diff --git a/README.md b/README.md index d68ec7a..59883a0 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,31 @@ -# ReCapcha -验证码识别程序+验证码自动识别工具类+发票标号识别案例 -Details: +# 验证码识别演示程序 -http://www.cnblogs.com/cnduan/p/5154419.html -发票编号识别案例: + - 打开 `\RECAPTCHA\RECAPTCHA\bin\Debug` 的 `CaptchaRecogition.exe` + + - 选择要处理的验证码位置,也可以网络获取下载:比如选择bin下:`\RECAPTCHA\RECAPTCHA\bin\Debug\captcha\jinshannetwork` + + - 选好验证码图文位置后,依次点击 `灰度 去背景 去噪点 二值化 图片分割`,查看处理前后的效果 + + - 最上方可以设置灰度方式,噪点阈值。字符宽度,字符数可以不强制指定,不指定会根据边缘检测算法自动切割,如果字符粘连严重,可以适当的指定下这两个值。 + +字模制作: + - 选择好字模位置,就是一个txt文档。bin下`RECAPTCHA\RECAPTCHA\bin\Debug\captcha\jinshannetwork\zimo.txt` + 开始识别,如果识别的不正确,点击`识别错误-->修改`按钮,修改错误的字符,然后点击 `字模学习入库`按钮 + +详细处理过程可参考文章: +## http://www.cnblogs.com/cnduan/p/5154419.html + +**为了方便是大家实验,实验中用到的验证码图片,字模等资源都放在项目的`bin`下** + +# 发票编号识别案例: -http://v.youku.com/v_show/id_XMTI1MzUxNDY3Ng==.html + - 这个演示过程需要调用计算机摄像头,测试用例是识别上海地铁纸质发票。 + - 具体过程是 `AForge`捕捉摄像头种发票图片,确定发票标号位置,调用验证码处理逻辑,切割发票编号,匹配字模识别并展示在图像上。 + - 字模是通过上面的程序手动训练得到的,放到了bin下 `\发票识别\发票编号识别\bin\Debug\zimo.txt`。 + - 具体效果可以参考: + +## http://v.youku.com/v_show/id_XMTI1MzUxNDY3Ng==.html + + diff --git a/RECAPTCHA/.vs/RECAPTCHA/v16/.suo b/RECAPTCHA/.vs/RECAPTCHA/v16/.suo new file mode 100644 index 0000000..ffbaecd Binary files /dev/null and b/RECAPTCHA/.vs/RECAPTCHA/v16/.suo differ diff --git "a/ReCapcha/Test/bin/Debug/captcha/fudan/\345\255\227\347\254\246\346\234\200\345\260\217\345\256\275\345\272\2466.txt" b/RECAPTCHA/.vs/RECAPTCHA/v16/Server/sqlite3/db.lock similarity index 100% rename from "ReCapcha/Test/bin/Debug/captcha/fudan/\345\255\227\347\254\246\346\234\200\345\260\217\345\256\275\345\272\2466.txt" rename to RECAPTCHA/.vs/RECAPTCHA/v16/Server/sqlite3/db.lock diff --git a/RECAPTCHA/.vs/RECAPTCHA/v16/Server/sqlite3/storage.ide b/RECAPTCHA/.vs/RECAPTCHA/v16/Server/sqlite3/storage.ide new file mode 100644 index 0000000..571ec82 Binary files /dev/null and b/RECAPTCHA/.vs/RECAPTCHA/v16/Server/sqlite3/storage.ide differ diff --git a/ReCapcha/Yanzhengma/ImageProcess.cs b/RECAPTCHA/ImageProcess/ImageProcess.cs similarity index 76% rename from ReCapcha/Yanzhengma/ImageProcess.cs rename to RECAPTCHA/ImageProcess/ImageProcess.cs index 1a460f6..3db8dae 100644 --- a/ReCapcha/Yanzhengma/ImageProcess.cs +++ b/RECAPTCHA/ImageProcess/ImageProcess.cs @@ -6,15 +6,14 @@ using System.Linq; using System.Text; -namespace CaptchaRecogition +namespace ImageProcess { /// - /// /// public class ImageProcess { /// - /// 图片灰度化处理指针法 + /// 图片灰度化处理指针法 /// /// 待处理图片 /// 1:最大值;2:平均值;3:加权平均;默认平均值 @@ -34,28 +33,32 @@ public static Image Gray(Bitmap img, int type = 2) getGrayValue = GetGrayValueByQuanzhong; break; } + int height = img.Height; int width = img.Width; BitmapData bdata = img.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format32bppRgb); unsafe { - byte* ptr = (byte*)bdata.Scan0.ToPointer(); + byte* ptr = (byte*) bdata.Scan0.ToPointer(); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { int v = getGrayValue(ptr[0], ptr[1], ptr[2]); // int v = (ptr[0] + ptr[1] + ptr[2]) / 3; - ptr[0] = ptr[1] = ptr[2] = (byte)v; + ptr[0] = ptr[1] = ptr[2] = (byte) v; ptr += 4; } + ptr += bdata.Stride - width * 4; } } + img.UnlockBits(bdata); return img; } + private static int GetGrayValueByMax(int r, int g, int b) { int max = r; @@ -68,39 +71,43 @@ private static int GetGrayValueByPingjunzhi(int r, int g, int b) { return (r + g + b) / 3; } + private static int GetGrayValueByQuanzhong(int b, int g, int r) { - return (int)(r * 0.3 + g * 0.59 + b * 0.11); + return (int) (r * 0.3 + g * 0.59 + b * 0.11); } + /// - /// 去除背景 + /// 去除背景 /// /// 原图片 /// 前景背景分界灰度值 /// public static Image RemoveBg(Bitmap img, int dgGrayValue) { - int width = img.Width; int height = img.Height; BitmapData bdata = img.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadWrite, PixelFormat.Format32bppRgb); //红绿蓝个八位,其余8位没使用 unsafe { - byte* ptr = (byte*)bdata.Scan0.ToPointer(); + byte* ptr = (byte*) bdata.Scan0.ToPointer(); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { - if (ptr[1] > dgGrayValue)//背景点 + if (ptr[1] > dgGrayValue) //背景点 { ptr[0] = ptr[1] = ptr[2] = 255; } + ptr += 4; } + ptr += bdata.Stride - width * 4; } } + #region 内存法 //获取位图中第一个像素数据的地址 @@ -131,28 +138,29 @@ public static Image RemoveBg(Bitmap img, int dgGrayValue) } /// - /// 得到灰度图像前景背景的临界值 最大类间方差法 + /// 得到灰度图像前景背景的临界值 最大类间方差法 /// /// 灰度图像 /// 灰度图像前景背景的临界值 public static int GetDgGrayValue(Image img) { Bitmap bmp = new Bitmap(img); - int[] pixelNum = new int[256]; + int[] pixelNum = new int[256]; int n, n1, n2; - int total; //total为总和,累计值 - double m1, m2, sum, csum, fmax, sb; //sb为类间方差,fmax存储最大方差值 + int total; //total为总和,累计值 + double m1, m2, sum, csum, fmax, sb; //sb为类间方差,fmax存储最大方差值 int k, t, q; - int threshValue = 1; // 阈值 - + int threshValue = 1; // 阈值 + for (int i = 0; i < bmp.Width; i++) { for (int j = 0; j < bmp.Height; j++) { //返回各个点的颜色,以RGB表示 - pixelNum[bmp.GetPixel(i, j).R]++; //相应的直方图加1 + pixelNum[bmp.GetPixel(i, j).R]++; //相应的直方图加1 } } + //直方图平滑化 for (k = 0; k <= 255; k++) { @@ -160,52 +168,63 @@ public static int GetDgGrayValue(Image img) for (t = -2; t <= 2; t++) //与附近2个灰度做平滑化 { q = k + t; - if (q < 0) + if (q < 0) q = 0; if (q > 255) q = 255; - total = total + pixelNum[q]; + total = total + pixelNum[q]; } - pixelNum[k] = (int)((float)total / 5.0 + 0.5); // pixelNum[k] 的灰度值是前后5个点的平均值 + + pixelNum[k] = (int) (total / 5.0 + 0.5); // pixelNum[k] 的灰度值是前后5个点的平均值 } + //求阈值 sum = csum = 0.0; n = 0; //计算总的图象的点数和质量矩,为后面的计算做准备 for (k = 0; k <= 255; k++) { - sum += (double)k * (double)pixelNum[k]; //x*f(x)质量矩,也就是每个灰度的值乘以其点数(归一化后为概率),sum为其总和 - n += pixelNum[k]; //n为图象总像素点数,归一化后就是累积概率 + sum += k * (double) pixelNum[k]; //x*f(x)质量矩,也就是每个灰度的值乘以其点数(归一化后为概率),sum为其总和 + n += pixelNum[k]; //n为图象总像素点数,归一化后就是累积概率 } - fmax = -1.0; //类间方差sb不可能为负,所以fmax初始值为-1不影响计算的进行 + fmax = -1.0; //类间方差sb不可能为负,所以fmax初始值为-1不影响计算的进行 n1 = 0; - for (k = 0; k < 256; k++) //对每个灰度(从0到255)计算一次分割后的类间方差sb + for (k = 0; k < 256; k++) //对每个灰度(从0到255)计算一次分割后的类间方差sb { - n1 += pixelNum[k]; //n1为在当前阈值遍前景图象的点数 - if (n1 == 0) { continue; } //没有分出前景后景 - n2 = n - n1; //n2为背景图象的点数 - if (n2 == 0) { break; } //n2为0表示全部都是后景图象,与n1=0情况类似,之后的遍历不可能使前景点数增加,所以此时可以退出循环 - csum += (double)k * pixelNum[k]; //前景的“灰度的值*其像素点数”的总和 - m1 = csum / n1; //m1为前景的平均灰度 - m2 = (sum - csum) / n2; //m2为背景的平均灰度 - sb = (double)n1 * (double)n2 * (m1 - m2) * (m1 - m2); //sb为类间方差 - if (sb > fmax) //如果算出的类间方差大于前一次算出的类间方差 + n1 += pixelNum[k]; //n1为在当前阈值遍前景图象的点数 + if (n1 == 0) { - fmax = sb; - threshValue = k; //k就是最佳阈值 + continue; + } //没有分出前景后景 + + n2 = n - n1; //n2为背景图象的点数 + if (n2 == 0) + { + break; + } //n2为0表示全部都是后景图象,与n1=0情况类似,之后的遍历不可能使前景点数增加,所以此时可以退出循环 + + csum += (double) k * pixelNum[k]; //前景的“灰度的值*其像素点数”的总和 + m1 = csum / n1; //m1为前景的平均灰度 + m2 = (sum - csum) / n2; //m2为背景的平均灰度 + sb = n1 * (double) n2 * (m1 - m2) * (m1 - m2); //sb为类间方差 + if (sb > fmax) //如果算出的类间方差大于前一次算出的类间方差 + { + fmax = sb; + threshValue = k; //k就是最佳阈值 } } + return threshValue; } /// - /// 去除噪点 + /// 去除噪点 /// /// 图片 /// 噪点的最大粘连数 /// - public static Image RemoveNoise(Bitmap img, int maxAroundPoints=1) + public static Image RemoveNoise(Bitmap img, int maxAroundPoints = 1) { int width = img.Width; int height = img.Height; @@ -213,10 +232,9 @@ public static Image RemoveNoise(Bitmap img, int maxAroundPoints=1) PixelFormat.Format32bppRgb); #region 指针法 - unsafe { - byte* ptr = (byte*)bdata.Scan0.ToPointer(); + byte* ptr = (byte*) bdata.Scan0.ToPointer(); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) @@ -240,25 +258,28 @@ public static Image RemoveNoise(Bitmap img, int maxAroundPoints=1) if ((ptr + width * 4 + 4)[0] != 255) aroundPoint++; //右下方 if ((ptr + width * 4 - 4)[0] != 255) aroundPoint++; //左下方 } - if (aroundPoint < maxAroundPoints)//目标点是噪点 + + if (aroundPoint < maxAroundPoints) //目标点是噪点 { ptr[0] = ptr[1] = ptr[2] = 255; //去噪点 } } + ptr += 4; } + ptr += bdata.Stride - width * 4; } } - img.UnlockBits(bdata); + img.UnlockBits(bdata); #endregion return img; } /// - /// 二值化处理 + /// 二值化处理 /// /// /// 二值化阈值 @@ -274,8 +295,8 @@ public static Bitmap PBinary(Bitmap src, int v) PixelFormat.Format32bppRgb); unsafe { - byte* pIn = (byte*)srcData.Scan0.ToPointer(); - byte* pOut = (byte*)dstData.Scan0.ToPointer(); + byte* pIn = (byte*) srcData.Scan0.ToPointer(); + byte* pOut = (byte*) dstData.Scan0.ToPointer(); byte* p; int r, g, b; for (int y = 0; y < h; y++) @@ -286,14 +307,17 @@ public static Bitmap PBinary(Bitmap src, int v) r = p[2]; g = p[1]; b = p[0]; - pOut[0] = pOut[1] = pOut[2] = (byte)(((byte)(0.2125 * r + 0.7154 * g + 0.0721 * b) >= v) ? 255 : 0); + pOut[0] = pOut[1] = + pOut[2] = (byte) ((byte) (0.2125 * r + 0.7154 * g + 0.0721 * b) >= v ? 255 : 0); //pOut[0] = pOut[1] = pOut[2] = (byte)(r >= v? 255 : 0); pIn += 4; pOut += 4; } + pIn += srcData.Stride - w * 4; pOut += srcData.Stride - w * 4; } + src.UnlockBits(srcData); dstBitmap.UnlockBits(dstData); return dstBitmap; @@ -301,7 +325,7 @@ public static Bitmap PBinary(Bitmap src, int v) } /// - /// 二值化处理 + /// 二值化处理 /// /// /// @@ -313,7 +337,7 @@ public static Bitmap Binary(Bitmap img) PixelFormat.Format32bppRgb); unsafe { - byte* start = (byte*)bdata.Scan0.ToPointer(); + byte* start = (byte*) bdata.Scan0.ToPointer(); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) @@ -322,11 +346,14 @@ public static Bitmap Binary(Bitmap img) { start[0] = start[1] = start[2] = 0; } + start += 4; } + start += bdata.Stride - width * 4; } } + img.UnlockBits(bdata); return img; } @@ -342,11 +369,12 @@ public static int ComputeThresholdValue(Bitmap img) { ihist[i] = 0; } + int gmin = 0xff; int gmax = 0; - for (i = 1; i < (img.Width - 1); i++) + for (i = 1; i < img.Width - 1; i++) { - for (int j = 1; j < (img.Height - 1); j++) + for (int j = 1; j < img.Height - 1; j++) { int cn = img.GetPixel(i, j).R; //生成直方图 ihist[cn]++; @@ -354,13 +382,14 @@ public static int ComputeThresholdValue(Bitmap img) { gmax = cn; //找到最大像素点R } + if (cn < gmin) { gmin = cn; //找到最小像素点R - } } } + double sum = csum = 0.0; int n = 0; for (k = 0; k <= 0xff; k++) @@ -368,10 +397,12 @@ public static int ComputeThresholdValue(Bitmap img) sum += k * ihist[k]; n += ihist[k]; } + if (n == 0) { return 60; } + double fmax = -1.0; int n1 = 0; for (k = 0; k < 0xff; k++) @@ -384,10 +415,11 @@ public static int ComputeThresholdValue(Bitmap img) { return thresholdValue; } + csum += k * ihist[k]; - double m1 = csum / ((double)n1); - double m2 = (sum - csum) / ((double)n2); - double sb = ((n1 * n2) * (m1 - m2)) * (m1 - m2); + double m1 = csum / n1; + double m2 = (sum - csum) / n2; + double sb = n1 * n2 * (m1 - m2) * (m1 - m2); if (sb > fmax) { fmax = sb; @@ -395,13 +427,199 @@ public static int ComputeThresholdValue(Bitmap img) } } } + return thresholdValue; } - #region 图片切割 + /// + /// 把图片的宽高统一,归一 + /// + /// 需要处理的图片 + public static Bitmap Normalized(Bitmap bitmap, int ww, int hh) + { + Bitmap temp = new Bitmap(ww, hh); + Graphics myGraphics = Graphics.FromImage(temp); + //源图像中要裁切的区域 + Rectangle sourceRectangle = new Rectangle(0, 0, bitmap.Width, bitmap.Height); + ////缩小后要绘制的区域 + Rectangle destRectangle = new Rectangle(0, 0, ww, hh); + myGraphics.Clear(Color.White); + ////绘制缩小的图像 + myGraphics.DrawImage(bitmap, destRectangle, sourceRectangle, GraphicsUnit.Pixel); + myGraphics.Dispose(); + return temp; + } + + /// + /// 获取图片特征码 + /// + /// + /// + public static string GetBinaryCode(Bitmap img) + { + StringBuilder sb = new StringBuilder(); + int width = img.Width; + int height = img.Height; + BitmapData bdata = img.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadOnly, + PixelFormat.Format32bppRgb); + unsafe + { + byte* start = (byte*) bdata.Scan0.ToPointer(); + for (int i = 0; i < height; i++) + { + for (int j = 0; j < width; j++) + { + if (start[0] == 255) + { + sb.Append("0"); + } + else + { + sb.Append("1"); + } + + start += 4; + } + + start += bdata.Stride - width * 4; + } + } + + img.UnlockBits(bdata); + return sb.ToString(); + } + + /// + /// 计算相似度 + /// + /// + /// + /// + public static int CalcRate(string t1, string t2) + { + if (t1.Length > 0 && t2.Length > 0) + { + char[] b1 = t1.ToCharArray(); + char[] b2 = t2.ToCharArray(); + var result = b1.Zip(b2, (b11, b22) => b11 ^ b22).ToArray(); + int cnt = 0; + for (int i = 0; i < result.Length; i++) + { + int str = result[i]; + if (str == 0) + { + cnt++; + } + } + + return cnt * 100 / result.Length; + } + + return 0; + } + + /// + /// 验证码的前期处理 + /// + /// 验证码图片 + /// 灰度处理方式1:最大值2:平均值3:加权平均 + /// 噪点最大粘连数目 + /// 切分小图宽度 + /// 切分小图高度 + /// + public static List PreProcess(Image img, int maxNearPoints, int smallPicWidth, int smallPicHeight, + int type = 2, bool is4Chars = true, int charWidth = 10) + { + img = Gray((Bitmap) img, type); + int v = ComputeThresholdValue((Bitmap) img); + img = RemoveBg((Bitmap) img, v); + img = RemoveNoise((Bitmap) img, maxNearPoints); + img = Binary((Bitmap) img); + List list = CutImage(img, smallPicWidth, smallPicHeight, is4Chars, charWidth); + return list; + } /// - /// 坐标点 + /// 识别验证码(图片-->字符) + /// + /// 验证码图片 + /// 字模数据库 + /// 噪点最大粘连数目 + /// 切分小图宽度 + /// 切分小图高度 + /// + /// 验证码字符宽度,细节处理时用到 + /// 识别后的验证码字符 + public static string GetCAPTCHACode(Image img, string zimoPath, int maxNearPoints, int smallPicWidth, + int smallPicHeight, int type = 2, bool is4Chars = true, int charWidth = 10) + { + //1.0验证码前期处理 + List list = PreProcess(img, maxNearPoints, smallPicWidth, smallPicHeight, type, is4Chars, + charWidth); + string yanzhengma = ""; + //2.0识别 + if (list.Count > 0) + { + //2.1读取字模 + string[] zimo = File.ReadAllLines(zimoPath); + + for (int i = 0; i < list.Count; i++) + { + //2.2图片--->特征码 + string code = GetBinaryCode(list[i]); + int rate = 0; + string subCode = ""; + for (int j = 0; j < zimo.Length; j++) + { + string[] subZimo = zimo[j].Split(new[] {"--"}, StringSplitOptions.None); + //2.3计算相似度 + int temp = CalcRate(code, subZimo[1]); + if (temp > rate) + { + rate = temp; + subCode = subZimo[0]; + } + } + + yanzhengma += subCode; + } + } + + return yanzhengma; + } + + /// + /// 验证码识别 + /// + /// 验证码 + /// 字模位置 + /// 验证码字符个数 + /// 识别后的验证码字符 + public static string GetCAPTCHACode(Image img, string zimoPath, int charNum) + { + return GetCAPTCHACode(img, zimoPath, 1, img.Width / charNum, img.Height); + } + + /// + /// 字模库维护 + /// + /// 小图片 + /// 字模路径 + /// 验证码字符 + public static void WriteZimo(Bitmap smallPic, string zimoPath, string CAPTCHACode) + { + string code = GetBinaryCode(smallPic); + string zimo = CAPTCHACode + "--" + code + "\r\n"; + string[] zimos = File.ReadAllLines(zimoPath); + if (!zimos.Contains(zimo)) + { + File.AppendAllText(zimoPath, zimo); + } + } + + #region 图片切割 + /// + /// 坐标点 /// public class Boundary { @@ -413,70 +631,65 @@ public class Boundary /// - /// 字符数目是四个,有切割后不是4个的话会做进一步处理 + /// 字符数目是四个,有切割后不是4个的话会做进一步处理 /// /// /// /// /// 是否是4个字 /// - public static List CutImage(Image img, int ww, int hh, bool is4Chars = true,int charWidth=10) + public static List CutImage(Image img, int ww, int hh, bool is4Chars = true, int charWidth = 10) { Bitmap bmp = null; - List list = GetImgBoundaryList(img, ref bmp, is4Chars,charWidth); + List list = GetImgBoundaryList(img, ref bmp, is4Chars, charWidth); List imgList = new List(); - try + for (int i = 0; i < list.Count; i++) { - for (int i = 0; i < list.Count; i++) + Boundary bd = list[i]; + int _startY = bd.StartY; + int _endY = bd.EndY; + int _startX = bd.StartX; + int _endX = bd.EndX; + Bitmap bmp1 = new Bitmap(_endY - _startY, _endX - _startX); + //bmp1 = new ImageHandler().TrimBmp(bmp1); + for (int j = _startX; j < _endX; j++) { - Boundary bd = list[i]; - int _startY = bd.StartY; - int _endY = bd.EndY; - int _startX = bd.StartX; - int _endX = bd.EndX; - Bitmap bmp1 = new Bitmap(_endY - _startY, _endX - _startX); - //bmp1 = new ImageHandler().TrimBmp(bmp1); - for (int j = _startX; j < _endX; j++) + for (int k = _startY; k < _endY; k++) { - for (int k = _startY; k < _endY; k++) - { - Color pixelColor = bmp.GetPixel(k, j); - bmp1.SetPixel(k - _startY, j - _startX, pixelColor); - } + Color pixelColor = bmp.GetPixel(k, j); + bmp1.SetPixel(k - _startY, j - _startX, pixelColor); } - //归一化 - Bitmap _bmp1 = Normalized(bmp1, ww, hh); - for (int j = 0; j < _bmp1.Height; j++) + } + + //归一化 + Bitmap _bmp1 = Normalized(bmp1, ww, hh); + for (int j = 0; j < _bmp1.Height; j++) + { + for (int k = 0; k < _bmp1.Width; k++) { - for (int k = 0; k < _bmp1.Width; k++) + Color pixelColor = _bmp1.GetPixel(k, j); + if (pixelColor.R != 255) { - Color pixelColor = _bmp1.GetPixel(k, j); - if (pixelColor.R != 255) - { - _bmp1.SetPixel(k, j, Color.Black); - } + _bmp1.SetPixel(k, j, Color.Black); } } - imgList.Add(_bmp1); } + + imgList.Add(_bmp1); } - catch (Exception ex) - { - throw; - } - return imgList; + return imgList; } /// - /// 确定是四字符会有精细处理 + /// 确定是四字符会有精细处理 /// /// /// /// /// - public static List GetImgBoundaryList(Image img, ref Bitmap _bmp, bool is4Chars,int charWidth=10) + public static List GetImgBoundaryList(Image img, ref Bitmap _bmp, bool is4Chars, int charWidth = 10) { List list = new List(); Bitmap bmp = new Bitmap(img); @@ -484,78 +697,78 @@ public static List GetImgBoundaryList(Image img, ref Bitmap _bmp, bool int endY = 0; int startX = 0; int endX = 0; - try + for (int i = 0; i < 10; i++) { - for (int i = 0; i < 10; i++) + startY = GetStartBoundaryY(img, startY); + if (startY >= 0) { - startY = GetStartBoundaryY(img, startY); - if (startY >= 0) + endY = GetEndBoundaryY(img, startY + 1); + //标记 + startX = GetStartBoundaryX(img, startY, endY); + int _startX = startX; + bool flag = false; + while (!flag && _startX < img.Height) { - endY = GetEndBoundaryY(img, startY + 1); - //标记 - startX = GetStartBoundaryX(img, startY, endY); - int _startX = startX; - bool flag = false; - while (!flag && _startX < img.Height) - { - endX = GetEndBoundaryX(img, _startX, startY, endY); - flag = endX - _startX >=5;//最小高度 - _startX = _startX + 1; - } - if (endX > 0 && endX - startX >= 5)//最小高度 - { - list.Add(new Boundary { EndY = endY, EndX = endX, StartY = startY, StartX = startX }); - } - startY = endY; + endX = GetEndBoundaryX(img, _startX, startY, endY); + flag = endX - _startX >= 5; //最小高度 + _startX = _startX + 1; } - else + + if (endX > 0 && endX - startX >= 5) //最小高度 { - break; + list.Add(new Boundary {EndY = endY, EndX = endX, StartY = startY, StartX = startX}); } - } - if (is4Chars&&list.Count!=4) - { - list = NotFourChars(img, out _bmp, list,charWidth); + + startY = endY; } else { - _bmp = bmp; - } - List tempBdList = list; - for (int i = 0; i < tempBdList.Count; i++) - { - if ( - !((tempBdList[i].EndY - tempBdList[i].StartY >= charWidth) &&//最小宽度比较 - (tempBdList[i].EndX - tempBdList[i].StartX >= 5)))//最小高度 - { - list.Remove(tempBdList[i]); - } + break; } } - catch (Exception ex) + + if (is4Chars && list.Count != 4) + { + list = NotFourChars(img, out _bmp, list, charWidth); + } + else { - throw; + _bmp = bmp; } + + List tempBdList = list; + for (int i = 0; i < tempBdList.Count; i++) + { + if ( + !(tempBdList[i].EndY - tempBdList[i].StartY >= charWidth && //最小宽度比较 + tempBdList[i].EndX - tempBdList[i].StartX >= 5)) //最小高度 + { + list.Remove(tempBdList[i]); + } + } + return list; } + /// - /// 对第一次切割后不是4张小图的做处理 + /// 对第一次切割后不是4张小图的做处理 /// /// /// /// /// - private static List NotFourChars(Image img, out Bitmap _bmp, List list,int charWidth) + private static List NotFourChars(Image img, out Bitmap _bmp, List list, int charWidth) { if (list.Count == 0) { _bmp = TrimBmp(img); - list.Add(new Boundary() { StartX = 0, EndX = _bmp.Height - 1, EndY = _bmp.Width - 1, StartY = 0 }); + list.Add(new Boundary {StartX = 0, EndX = _bmp.Height - 1, EndY = _bmp.Width - 1, StartY = 0}); } else { _bmp = new Bitmap(img); } + if (list.Count == 1) { //平均切割 @@ -569,10 +782,11 @@ private static List NotFourChars(Image img, out Bitmap _bmp, List NotFourChars(Image img, out Bitmap _bmp, List NotFourChars(Image img, out Bitmap _bmp, List 1.5*charWidth) + if (Math.Abs(list[1].EndY - list[1].StartY - (list[0].EndY - list[0].StartY)) > 1.5 * charWidth) { - Boundary max = (list[1].EndY - list[1].StartY) > (list[0].EndY - list[0].StartY) + Boundary max = list[1].EndY - list[1].StartY > list[0].EndY - list[0].StartY ? list[1] : list[0]; //平分 - int index = (list[1].EndY - list[1].StartY) > (list[0].EndY - list[0].StartY) ? 1 : 0; + int index = list[1].EndY - list[1].StartY > list[0].EndY - list[0].StartY ? 1 : 0; int _startY = max.StartY; int _endY = _startY; int _startX = max.StartX; @@ -620,7 +836,7 @@ private static List NotFourChars(Image img, out Bitmap _bmp, List NotFourChars(Image img, out Bitmap _bmp, List -1) + if (str.IndexOf("1", StringComparison.Ordinal) > -1) { y1 = i; break; } } + int y2 = 0; for (int i = h - 1; i > 0; i--) { int[] xArray = GetArrayX(input, i); string str = Array2String(xArray, false); - if (str.IndexOf("1") > -1) + if (str.IndexOf("1", StringComparison.Ordinal) > -1) { y2 = i; break; } } + return new Point(y1, y2); } @@ -791,28 +1019,30 @@ public static Point GetXBeyond(int[,] input) { int[] yArray = GetArrayY(input, i); string str = Array2String(yArray, false); - if (str.IndexOf("1") > -1) + if (str.IndexOf("1", StringComparison.Ordinal) > -1) { x1 = i; break; } } + int x2 = 0; for (int i = w - 1; i > 0; i--) { int[] yArray = GetArrayY(input, i); string str = Array2String(yArray, false); - if (str.IndexOf("1") > -1) + if (str.IndexOf("1", StringComparison.Ordinal) > -1) { x2 = i; break; } } + return new Point(x1, x2); } /// - /// Y轴开始的边界 + /// Y轴开始的边界 /// /// /// @@ -827,29 +1057,29 @@ public static int GetStartBoundaryY(Image img, int start) { //遍历各个像素,获得bmp位图每个像素的RGB对象 Color pixelColor = bmp.GetPixel(i, j); - if (pixelColor.Name != "ffffffff") + if (pixelColor.Name != $"ffffffff") { startB = i; break; } } + if (startB != 0) { break; } } + if (startB == start) { return startB + 2; } - else - { - return startB - 1; - } + + return startB - 1; } /// - /// Y轴结束的边界 + /// Y轴结束的边界 /// /// /// @@ -869,22 +1099,23 @@ private static int GetEndBoundaryY(Image img, int start) if (pixelColor.Name == "ffffffff") { cnt++; - continue; } else break; } - if (bmp.Height -2<=cnt&&cnt <= bmp.Height) + + if (bmp.Height - 2 <= cnt && cnt <= bmp.Height) { endB = i; break; } } + return endB; } /// - /// X轴开始的边界 + /// X轴开始的边界 /// /// /// @@ -905,21 +1136,19 @@ private static int GetStartBoundaryX(Image img, int startY, int endY) startB = i; break; } - else - continue; } + if (startB != 0) { break; } - else - continue; } + return startB - 1; } /// - /// 获得X轴结束边界 + /// 获得X轴结束边界 /// /// /// @@ -940,23 +1169,24 @@ private static int GetEndBoundaryX(Image img, int startX, int startY, int endY) if (pixelColor.Name == "ffffffff") { cnt++; - continue; } else break; } - if (cnt == endY - startY&&i-startX>4)//防止把i的点也算进去 + + if (cnt == endY - startY && i - startX > 4) //防止把i的点也算进去 { endB = i; break; } } + return endB; } //-------------------------------------------------------------------------------------------------- /// - /// 获取有效区域 + /// 获取有效区域 /// /// 灰度值 /// 图片对象 @@ -980,9 +1210,7 @@ public static Bitmap GetPicValidByValue(int dgGrayValue, Bitmap bm) if (posx2 < j) posx2 = j; if (posy2 < i) posy2 = i; } - } - } //复制新图 @@ -992,35 +1220,35 @@ public static Bitmap GetPicValidByValue(int dgGrayValue, Bitmap bm) } /// - /// 图片切割 + /// 图片切割 /// - /// - /// + /// + /// /// /// - public static Bitmap[] CutImage(int RowNum, int ColNum, Bitmap bm) + public static Bitmap[] CutImage(int rowNum, int colNum, Bitmap bm) { - if (RowNum == 0 || ColNum == 0) + if (rowNum == 0 || colNum == 0) return null; - int singW = bm.Width / RowNum; - int singH = bm.Height / ColNum; - Bitmap[] PicArray = new Bitmap[RowNum * ColNum]; + int singW = bm.Width / rowNum; + int singH = bm.Height / colNum; + Bitmap[] picArray = new Bitmap[rowNum * colNum]; Rectangle cloneRect; - for (int i = 0; i < ColNum; i++) //找有效区 + for (int i = 0; i < colNum; i++) //找有效区 { - for (int j = 0; j < RowNum; j++) + for (int j = 0; j < rowNum; j++) { cloneRect = new Rectangle(j * singW, i * singH, singW, singH); - PicArray[i * RowNum + j] = GetPicValidByValue(bm.Clone(cloneRect, bm.PixelFormat), 128); //复制小块图 + picArray[i * rowNum + j] = GetPicValidByValue(bm.Clone(cloneRect, bm.PixelFormat), 128); //复制小块图 } } - return PicArray; + return picArray; } /// - /// 对切割后小图操作 + /// 对切割后小图操作 /// /// /// @@ -1044,189 +1272,13 @@ public static Bitmap GetPicValidByValue(Bitmap singlepic, int dgGrayValue) if (posx2 < j) posx2 = j; if (posy2 < i) posy2 = i; } - } - } //复制新图 Rectangle cloneRect = new Rectangle(posx1, posy1, posx2 - posx1 + 1, posy2 - posy1 + 1); return singlepic.Clone(cloneRect, singlepic.PixelFormat); } - #endregion - - /// - /// 把图片的宽高统一,归一 - /// - /// 需要处理的图片 - public static Bitmap Normalized(Bitmap bitmap, int ww, int hh) - { - Bitmap temp = new Bitmap(ww, hh); - Graphics myGraphics = Graphics.FromImage(temp); - //源图像中要裁切的区域 - Rectangle sourceRectangle = new Rectangle(0, 0, bitmap.Width, bitmap.Height); - ////缩小后要绘制的区域 - Rectangle destRectangle = new Rectangle(0, 0, ww, hh); - myGraphics.Clear(Color.White); - ////绘制缩小的图像 - myGraphics.DrawImage(bitmap, destRectangle, sourceRectangle, GraphicsUnit.Pixel); - myGraphics.Dispose(); - return temp; - } - /// - /// 获取图片特征码 - /// - /// - /// - public static string GetBinaryCode(Bitmap img) - { - StringBuilder sb = new StringBuilder(); - int width = img.Width; - int height = img.Height; - BitmapData bdata = img.LockBits(new Rectangle(0, 0, width, height), ImageLockMode.ReadOnly, - PixelFormat.Format32bppRgb); - unsafe - { - byte* start = (byte*)bdata.Scan0.ToPointer(); - for (int i = 0; i < height; i++) - { - for (int j = 0; j < width; j++) - { - if (start[0] == 255) - { - sb.Append("0"); - - } - else - { - sb.Append("1"); - } - start += 4; - } - start += bdata.Stride - width * 4; - } - } - img.UnlockBits(bdata); - return sb.ToString(); - - } - /// - /// 计算相似度 - /// - /// - /// - /// - public static int CalcRate(string t1, string t2) - { - if (t1.Length > 0 && t2.Length > 0) - { - char[] b1 = t1.ToCharArray(); - char[] b2 = t2.ToCharArray(); - var result = b1.Zip(b2, (b11, b22) => b11 ^ b22).ToArray(); - int cnt = 0; - for (int i = 0; i < result.Length; i++) - { - int str = result[i]; - if (str == 0) - { - cnt++; - } - } - return cnt * 100 / result.Length; - } - else - return 0; - } - /// - /// 验证码的前期处理 - /// - /// 验证码图片 - /// 灰度处理方式1:最大值2:平均值3:加权平均 - /// 噪点最大粘连数目 - /// 切分小图宽度 - /// 切分小图高度 - /// - public static List PreProcess(Image img, int maxNearPoints, int smallPicWidth, int smallPicHeight,int type=2,bool is4Chars=true,int charWidth=10) - { - img = Gray((Bitmap)img,type); - int v = ComputeThresholdValue((Bitmap)img); - img = RemoveBg((Bitmap)img, v); - img = RemoveNoise((Bitmap)img, maxNearPoints); - img = Binary((Bitmap)img); - List list = CutImage(img, smallPicWidth, smallPicHeight,is4Chars,charWidth); - return list; - } - /// - /// 识别验证码(图片-->字符) - /// - /// 验证码图片 - /// 字模数据库 - /// 噪点最大粘连数目 - /// 切分小图宽度 - /// 切分小图高度 - /// 验证码字符宽度,细节处理时用到 - /// 识别后的验证码字符 - public static string GetYZMCode(Image img, string zimoPath, int maxNearPoints, int smallPicWidth, int smallPicHeight,int type=2,bool is4Chars=true,int charWidth=10) - { - //1.0验证码前期处理 - List list = PreProcess(img, maxNearPoints, smallPicWidth, smallPicHeight,type,is4Chars,charWidth); - string yanzhengma = ""; - //2.0识别 - if (list.Count > 0) - { - //2.1读取字模 - string[] zimo = File.ReadAllLines(zimoPath); - - for (int i = 0; i < list.Count; i++) - { - //2.2图片--->特征码 - string code = GetBinaryCode(list[i]); - int rate = 0; - string subCode = ""; - for (int j = 0; j < zimo.Length; j++) - { - string[] subZimo = zimo[j].Split(new string[] { "--" }, StringSplitOptions.None); - //2.3计算相似度 - int temp = CalcRate(code, subZimo[1]); - if (temp > rate) - { - rate = temp; - subCode = subZimo[0]; - } - } - yanzhengma += subCode; - - } - } - return yanzhengma; - } - /// - /// 验证码识别 - /// - /// 验证码 - /// 字模位置 - /// 验证码字符个数 - /// 识别后的验证码字符 - public static string GetYZMCode(Image img, string zimoPath, int charNum) - { - return GetYZMCode(img, zimoPath, 1, img.Width / charNum, img.Height); - } - /// - /// 字模库维护 - /// - /// 小图片 - /// 字模路径 - /// 验证码字符 - public static void WriteZimo(Bitmap smallPic, string zimoPath, string YZMCode) - { - string code = GetBinaryCode(smallPic); - string zimo = YZMCode + "--" + code + "\r\n"; - string[] zimos = File.ReadAllLines(zimoPath); - if (!zimos.Contains(zimo)) - { - File.AppendAllText(zimoPath, zimo); - } - } } -} +} \ No newline at end of file diff --git a/ReCapcha/Yanzhengma/ImagePorcess.csproj b/RECAPTCHA/ImageProcess/ImageProcess.csproj similarity index 89% rename from ReCapcha/Yanzhengma/ImagePorcess.csproj rename to RECAPTCHA/ImageProcess/ImageProcess.csproj index 703f1f3..043fc86 100644 --- a/ReCapcha/Yanzhengma/ImagePorcess.csproj +++ b/RECAPTCHA/ImageProcess/ImageProcess.csproj @@ -7,10 +7,11 @@ {A7E3B730-775F-44F2-A5B2-AD772EA2B56E} Library Properties - Yanzhengma - Yanzhengma - v4.0 + ImageProcess + ImageProcess + v4.7.2 512 + true @@ -21,6 +22,7 @@ prompt 4 true + false pdbonly @@ -29,6 +31,7 @@ TRACE prompt 4 + false diff --git a/ReCapcha/Yanzhengma/ImagePorcess.csproj.user b/RECAPTCHA/ImageProcess/ImageProcess.csproj.user similarity index 100% rename from ReCapcha/Yanzhengma/ImagePorcess.csproj.user rename to RECAPTCHA/ImageProcess/ImageProcess.csproj.user diff --git a/ReCapcha/Yanzhengma/Properties/AssemblyInfo.cs b/RECAPTCHA/ImageProcess/Properties/AssemblyInfo.cs similarity index 100% rename from ReCapcha/Yanzhengma/Properties/AssemblyInfo.cs rename to RECAPTCHA/ImageProcess/Properties/AssemblyInfo.cs diff --git a/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.dll b/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.dll new file mode 100644 index 0000000..b05c8cf Binary files /dev/null and b/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.dll differ diff --git a/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.pdb b/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.pdb new file mode 100644 index 0000000..a284ae6 Binary files /dev/null and b/RECAPTCHA/ImageProcess/bin/Debug/ImageProcess.pdb differ diff --git a/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..4e0470c Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..c1c51b9 Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.CoreCompileInputs.cache b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a318b8c --- /dev/null +++ b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +587b56933fc5ebb85436869d6ef46ea863a52623 diff --git a/ReCapcha/Yanzhengma/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt similarity index 65% rename from ReCapcha/Yanzhengma/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt rename to RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt index 324591d..b2d3a94 100644 --- a/ReCapcha/Yanzhengma/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt +++ b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csproj.FileListAbsolute.txt @@ -7,3 +7,8 @@ E:\github\ReCapcha\ReCapcha\Yanzhengma\bin\Debug\Yanzhengma.pdb E:\github\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\ImagePorcess.csprojResolveAssemblyReference.cache E:\github\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\Yanzhengma.dll E:\github\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\Yanzhengma.pdb +D:\myapp\ReCapcha\ReCapcha\Yanzhengma\bin\Debug\ImageProcess.dll +D:\myapp\ReCapcha\ReCapcha\Yanzhengma\bin\Debug\ImageProcess.pdb +D:\myapp\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\ImagePorcess.csproj.CoreCompileInputs.cache +D:\myapp\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\ImageProcess.dll +D:\myapp\ReCapcha\ReCapcha\Yanzhengma\obj\Debug\ImageProcess.pdb diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csprojAssemblyReference.cache b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csprojAssemblyReference.cache new file mode 100644 index 0000000..025dad4 Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csprojAssemblyReference.cache differ diff --git a/ReCapcha/Yanzhengma/obj/Debug/ImagePorcess.csprojResolveAssemblyReference.cache b/RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csprojResolveAssemblyReference.cache similarity index 100% rename from ReCapcha/Yanzhengma/obj/Debug/ImagePorcess.csprojResolveAssemblyReference.cache rename to RECAPTCHA/ImageProcess/obj/Debug/ImagePorcess.csprojResolveAssemblyReference.cache diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.CoreCompileInputs.cache b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a318b8c --- /dev/null +++ b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +587b56933fc5ebb85436869d6ef46ea863a52623 diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.FileListAbsolute.txt b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b268ab9 --- /dev/null +++ b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +D:\myapp\ReCapcha\ReCapcha\ImageProcess\bin\Debug\ImageProcess.dll +D:\myapp\ReCapcha\ReCapcha\ImageProcess\bin\Debug\ImageProcess.pdb +D:\myapp\ReCapcha\ReCapcha\ImageProcess\obj\Debug\ImageProcess.csprojAssemblyReference.cache +D:\myapp\ReCapcha\ReCapcha\ImageProcess\obj\Debug\ImageProcess.csproj.CoreCompileInputs.cache +D:\myapp\ReCapcha\ReCapcha\ImageProcess\obj\Debug\ImageProcess.dll +D:\myapp\ReCapcha\ReCapcha\ImageProcess\obj\Debug\ImageProcess.pdb diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csprojAssemblyReference.cache b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csprojAssemblyReference.cache new file mode 100644 index 0000000..f01462e Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.csprojAssemblyReference.cache differ diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.dll b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.dll new file mode 100644 index 0000000..b05c8cf Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.dll differ diff --git a/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.pdb b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.pdb new file mode 100644 index 0000000..a284ae6 Binary files /dev/null and b/RECAPTCHA/ImageProcess/obj/Debug/ImageProcess.pdb differ diff --git a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.csproj.FileListAbsolute.txt b/RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.csproj.FileListAbsolute.txt similarity index 100% rename from ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.csproj.FileListAbsolute.txt rename to RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.csproj.FileListAbsolute.txt diff --git a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.csprojResolveAssemblyReference.cache b/RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.csprojResolveAssemblyReference.cache similarity index 100% rename from ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.csprojResolveAssemblyReference.cache rename to RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.csprojResolveAssemblyReference.cache diff --git a/ReCapcha/Yanzhengma/bin/Debug/Yanzhengma.dll b/RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.dll similarity index 100% rename from ReCapcha/Yanzhengma/bin/Debug/Yanzhengma.dll rename to RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.dll diff --git a/ReCapcha/Yanzhengma/bin/Debug/Yanzhengma.pdb b/RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.pdb similarity index 100% rename from ReCapcha/Yanzhengma/bin/Debug/Yanzhengma.pdb rename to RECAPTCHA/ImageProcess/obj/Debug/Yanzhengma.pdb diff --git a/ReCapcha/ReCapcha.sln b/RECAPTCHA/RECAPTCHA.sln similarity index 70% rename from ReCapcha/ReCapcha.sln rename to RECAPTCHA/RECAPTCHA.sln index 605b925..cd888ea 100644 --- a/ReCapcha/ReCapcha.sln +++ b/RECAPTCHA/RECAPTCHA.sln @@ -1,11 +1,11 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.40629.0 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28803.156 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoRecogize", "Test\AutoRecogize.csproj", "{7EA042CA-D4B0-4EAF-A09D-0850526D0D73}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RECAPTCHA", "RECAPTCHA\RECAPTCHA.csproj", "{7EA042CA-D4B0-4EAF-A09D-0850526D0D73}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImagePorcess", "Yanzhengma\ImagePorcess.csproj", "{A7E3B730-775F-44F2-A5B2-AD772EA2B56E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageProcess", "ImageProcess\ImageProcess.csproj", "{A7E3B730-775F-44F2-A5B2-AD772EA2B56E}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -25,4 +25,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {66596365-70D1-4CDD-9875-6B93C717EA21} + EndGlobalSection EndGlobal diff --git a/RECAPTCHA/RECAPTCHA.sln.DotSettings.user b/RECAPTCHA/RECAPTCHA.sln.DotSettings.user new file mode 100644 index 0000000..7954cf9 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA.sln.DotSettings.user @@ -0,0 +1,5 @@ + + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> + 2 \ No newline at end of file diff --git a/ReCapcha/Test/Process2.Designer.cs b/RECAPTCHA/RECAPTCHA/.Designer.cs similarity index 99% rename from ReCapcha/Test/Process2.Designer.cs rename to RECAPTCHA/RECAPTCHA/.Designer.cs index 954ed72..1cdaa61 100644 --- a/ReCapcha/Test/Process2.Designer.cs +++ b/RECAPTCHA/RECAPTCHA/.Designer.cs @@ -1,4 +1,4 @@ -namespace CaptchaRecogition +namespace RECAPTCHA { partial class Process2 { diff --git a/ReCapcha/Test/Process1.Designer.cs "b/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.Designer.cs" similarity index 99% rename from ReCapcha/Test/Process1.Designer.cs rename to "RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.Designer.cs" index 16cc588..fbe171a 100644 --- a/ReCapcha/Test/Process1.Designer.cs +++ "b/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.Designer.cs" @@ -1,4 +1,4 @@ -namespace CaptchaRecogition +namespace RECAPTCHA { partial class Process1 { diff --git "a/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.cs" "b/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.cs" new file mode 100644 index 0000000..275f809 --- /dev/null +++ "b/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.cs" @@ -0,0 +1,31 @@ +using System; +using System.Windows.Forms; + +namespace RECAPTCHA +{ + public partial class Process1 : Form + { + private readonly string Grey; + + private readonly string Original; + + public Process1() + { + InitializeComponent(); + } + + public Process1(string original, string grey) + { + InitializeComponent(); + Original = original; + Grey = grey; + Text = "灰度处理前后对比"; + } + + private void ProcessResults_Load(object sender, EventArgs e) + { + listBox_Original.Items.AddRange(Original.Split(new[] {"\r\n"}, StringSplitOptions.None)); + listBox_Grey.Items.AddRange(Grey.Split(new[] {"\r\n"}, StringSplitOptions.None)); + } + } +} \ No newline at end of file diff --git a/ReCapcha/Test/Main.resx "b/RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.resx" similarity index 100% rename from ReCapcha/Test/Main.resx rename to "RECAPTCHA/RECAPTCHA/01\347\201\260\345\272\246\345\214\226.resx" diff --git a/ReCapcha/Test/Process2.cs "b/RECAPTCHA/RECAPTCHA/02\345\216\273\350\203\214\346\231\257.cs" similarity index 81% rename from ReCapcha/Test/Process2.cs rename to "RECAPTCHA/RECAPTCHA/02\345\216\273\350\203\214\346\231\257.cs" index 4a27cc3..d4dabc1 100644 --- a/ReCapcha/Test/Process2.cs +++ "b/RECAPTCHA/RECAPTCHA/02\345\216\273\350\203\214\346\231\257.cs" @@ -1,13 +1,7 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; using System.Windows.Forms; -namespace CaptchaRecogition +namespace RECAPTCHA { public partial class Process2 : Form { diff --git a/ReCapcha/Test/Process1.resx "b/RECAPTCHA/RECAPTCHA/02\345\216\273\350\203\214\346\231\257.resx" similarity index 100% rename from ReCapcha/Test/Process1.resx rename to "RECAPTCHA/RECAPTCHA/02\345\216\273\350\203\214\346\231\257.resx" diff --git a/ReCapcha/Test/Process3.Designer.cs "b/RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.Designer.cs" similarity index 99% rename from ReCapcha/Test/Process3.Designer.cs rename to "RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.Designer.cs" index 0a1f700..7379dbd 100644 --- a/ReCapcha/Test/Process3.Designer.cs +++ "b/RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.Designer.cs" @@ -1,4 +1,4 @@ -namespace CaptchaRecogition +namespace RECAPTCHA { partial class Process3 { diff --git a/ReCapcha/Test/Process3.cs "b/RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.cs" similarity index 81% rename from ReCapcha/Test/Process3.cs rename to "RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.cs" index dd632ca..fb9947e 100644 --- a/ReCapcha/Test/Process3.cs +++ "b/RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.cs" @@ -1,13 +1,7 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; using System.Windows.Forms; -namespace CaptchaRecogition +namespace RECAPTCHA { public partial class Process3 : Form { diff --git a/ReCapcha/Test/Process2.resx "b/RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.resx" similarity index 100% rename from ReCapcha/Test/Process2.resx rename to "RECAPTCHA/RECAPTCHA/03\345\231\252\347\202\271\345\244\204\347\220\206.resx" diff --git a/ReCapcha/Test/Process4.Designer.cs "b/RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.Designer.cs" similarity index 99% rename from ReCapcha/Test/Process4.Designer.cs rename to "RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.Designer.cs" index c8258e1..470caf2 100644 --- a/ReCapcha/Test/Process4.Designer.cs +++ "b/RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.Designer.cs" @@ -1,4 +1,4 @@ -namespace CaptchaRecogition +namespace RECAPTCHA { partial class Process4 { diff --git a/ReCapcha/Test/Process4.cs "b/RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.cs" similarity index 82% rename from ReCapcha/Test/Process4.cs rename to "RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.cs" index 96caba1..5529fff 100644 --- a/ReCapcha/Test/Process4.cs +++ "b/RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.cs" @@ -1,13 +1,7 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; using System.Windows.Forms; -namespace CaptchaRecogition +namespace RECAPTCHA { public partial class Process4 : Form { diff --git a/ReCapcha/Test/Process3.resx "b/RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.resx" similarity index 100% rename from ReCapcha/Test/Process3.resx rename to "RECAPTCHA/RECAPTCHA/04\344\272\214\345\200\274\345\214\226.resx" diff --git a/ReCapcha/Test/Test4Captcha.Designer.cs "b/RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.Designer.cs" similarity index 98% rename from ReCapcha/Test/Test4Captcha.Designer.cs rename to "RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.Designer.cs" index 9426fed..23c65ad 100644 --- a/ReCapcha/Test/Test4Captcha.Designer.cs +++ "b/RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.Designer.cs" @@ -1,4 +1,4 @@ -namespace ReCapcha +namespace RECAPTCHA { partial class Test4Captcha { @@ -160,7 +160,7 @@ private void InitializeComponent() // // pictureBox1 // - this.pictureBox1.Image = global::CaptchaRecogition.Properties.Resources.binary; + this.pictureBox1.Image = global::RECAPTCHA.Properties.Resources.binary; this.pictureBox1.Location = new System.Drawing.Point(173, 13); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(180, 71); diff --git a/ReCapcha/Test/Test4Captcha.cs "b/RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.cs" similarity index 88% rename from ReCapcha/Test/Test4Captcha.cs rename to "RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.cs" index ad57805..8608ba4 100644 --- a/ReCapcha/Test/Test4Captcha.cs +++ "b/RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.cs" @@ -1,18 +1,12 @@ using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Data; using System.Diagnostics; using System.Drawing; using System.IO; -using System.Linq; using System.Reflection; -using System.Text; -using System.Threading.Tasks; using System.Windows.Forms; -using CaptchaRecogition; -namespace ReCapcha +namespace RECAPTCHA { public partial class Test4Captcha : Form { @@ -27,7 +21,7 @@ private void button1_Click(object sender, EventArgs e) { Stopwatch sw = new Stopwatch(); sw.Start(); - string code = ImageProcess.GetYZMCode(pictureBox1.Image, Path.GetDirectoryName(URL)+"\\zimo.txt",Convert.ToInt32( textBox1.Text.Trim( )),20,30,2,checkBox1.Checked ,Convert.ToInt32( textBox2.Text.Trim( ))); + string code = ImageProcess.GetCAPTCHACode(pictureBox1.Image, Path.GetDirectoryName(URL)+"\\zimo.txt",Convert.ToInt32( textBox1.Text.Trim( )),20,30,2,checkBox1.Checked ,Convert.ToInt32( textBox2.Text.Trim( ))); sw.Stop(); diff --git a/ReCapcha/Test/Process4.resx "b/RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.resx" similarity index 100% rename from ReCapcha/Test/Process4.resx rename to "RECAPTCHA/RECAPTCHA/05\351\252\214\350\257\201.resx" diff --git a/ReCapcha/Test/App.config b/RECAPTCHA/RECAPTCHA/App.config similarity index 92% rename from ReCapcha/Test/App.config rename to RECAPTCHA/RECAPTCHA/App.config index 74ade9d..8fc0551 100644 --- a/ReCapcha/Test/App.config +++ b/RECAPTCHA/RECAPTCHA/App.config @@ -1,6 +1,6 @@ - + diff --git a/ReCapcha/Test/ImageProcess.cs b/RECAPTCHA/RECAPTCHA/ImageProcess.cs similarity index 98% rename from ReCapcha/Test/ImageProcess.cs rename to RECAPTCHA/RECAPTCHA/ImageProcess.cs index abce0a2..955cef6 100644 --- a/ReCapcha/Test/ImageProcess.cs +++ b/RECAPTCHA/RECAPTCHA/ImageProcess.cs @@ -4,10 +4,9 @@ using System.Drawing.Imaging; using System.IO; using System.Linq; -using System.Runtime.InteropServices; using System.Text; -namespace CaptchaRecogition +namespace RECAPTCHA { /// /// @@ -1168,7 +1167,7 @@ public static List PreProcess(Image img, int maxNearPoints, int smallPic /// 切分小图高度 /// 验证码字符宽度,细节处理时用到 /// 识别后的验证码字符 - public static string GetYZMCode(Image img, string zimoPath, int maxNearPoints, int smallPicWidth, int smallPicHeight,int type=2,bool is4Chars=true,int charWidth=10) + public static string GetCAPTCHACode(Image img, string zimoPath, int maxNearPoints, int smallPicWidth, int smallPicHeight,int type=2,bool is4Chars=true,int charWidth=10) { //1.0验证码前期处理 List list = PreProcess(img, maxNearPoints, smallPicWidth, smallPicHeight,type,is4Chars,charWidth); @@ -1209,20 +1208,20 @@ public static string GetYZMCode(Image img, string zimoPath, int maxNearPoints, i /// 字模位置 /// 验证码字符个数 /// 识别后的验证码字符 - public static string GetYZMCode(Image img, string zimoPath, int charNum) + public static string GetCAPTCHACode(Image img, string zimoPath, int charNum) { - return GetYZMCode(img, zimoPath, 1, img.Width / charNum, img.Height); + return GetCAPTCHACode(img, zimoPath, 1, img.Width / charNum, img.Height); } /// /// 字模库维护 /// /// 小图片 /// 字模路径 - /// 验证码字符 - public static void WriteZimo(Bitmap smallPic, string zimoPath, string YZMCode) + /// 验证码字符 + public static void WriteZimo(Bitmap smallPic, string zimoPath, string CAPTCHACode) { string code = GetBinaryCode(smallPic); - string zimo = YZMCode + "--" + code + "\r\n"; + string zimo = CAPTCHACode + "--" + code + "\r\n"; string[] zimos = File.ReadAllLines(zimoPath); if (!zimos.Contains(zimo)) { diff --git a/ReCapcha/Test/Main.Designer.cs b/RECAPTCHA/RECAPTCHA/Main.Designer.cs similarity index 97% rename from ReCapcha/Test/Main.Designer.cs rename to RECAPTCHA/RECAPTCHA/Main.Designer.cs index a608ab9..9745b97 100644 --- a/ReCapcha/Test/Main.Designer.cs +++ b/RECAPTCHA/RECAPTCHA/Main.Designer.cs @@ -429,7 +429,7 @@ private void InitializeComponent() // pb6 // this.pb6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb6.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pb6.Image = global::RECAPTCHA.Properties.Resources._null; this.pb6.Location = new System.Drawing.Point(249, 420); this.pb6.Name = "pb6"; this.pb6.Size = new System.Drawing.Size(50, 34); @@ -440,7 +440,7 @@ private void InitializeComponent() // pb3 // this.pb3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb3.Image = global::CaptchaRecogition.Properties.Resources._3; + this.pb3.Image = global::RECAPTCHA.Properties.Resources._3; this.pb3.Location = new System.Drawing.Point(246, 361); this.pb3.Name = "pb3"; this.pb3.Size = new System.Drawing.Size(55, 37); @@ -451,7 +451,7 @@ private void InitializeComponent() // pb5 // this.pb5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb5.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pb5.Image = global::RECAPTCHA.Properties.Resources._null; this.pb5.Location = new System.Drawing.Point(186, 418); this.pb5.Name = "pb5"; this.pb5.Size = new System.Drawing.Size(55, 34); @@ -473,7 +473,7 @@ private void InitializeComponent() // pb4 // this.pb4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb4.Image = global::CaptchaRecogition.Properties.Resources._4; + this.pb4.Image = global::RECAPTCHA.Properties.Resources._4; this.pb4.Location = new System.Drawing.Point(125, 417); this.pb4.Name = "pb4"; this.pb4.Size = new System.Drawing.Size(50, 37); @@ -484,7 +484,7 @@ private void InitializeComponent() // pb2 // this.pb2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb2.Image = global::CaptchaRecogition.Properties.Resources._2; + this.pb2.Image = global::RECAPTCHA.Properties.Resources._2; this.pb2.Location = new System.Drawing.Point(186, 362); this.pb2.Name = "pb2"; this.pb2.Size = new System.Drawing.Size(54, 37); @@ -521,7 +521,7 @@ private void InitializeComponent() // pb1 // this.pb1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb1.Image = global::CaptchaRecogition.Properties.Resources._1; + this.pb1.Image = global::RECAPTCHA.Properties.Resources._1; this.pb1.Location = new System.Drawing.Point(125, 362); this.pb1.Name = "pb1"; this.pb1.Size = new System.Drawing.Size(55, 37); @@ -595,7 +595,7 @@ private void InitializeComponent() // this.pborigin.BackColor = System.Drawing.SystemColors.ButtonHighlight; this.pborigin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pborigin.Image = global::CaptchaRecogition.Properties.Resources.bar; + this.pborigin.Image = global::RECAPTCHA.Properties.Resources.bar; this.pborigin.Location = new System.Drawing.Point(148, 28); this.pborigin.Name = "pborigin"; this.pborigin.Size = new System.Drawing.Size(164, 85); @@ -608,7 +608,7 @@ private void InitializeComponent() // this.pb_grey.BackColor = System.Drawing.SystemColors.ButtonHighlight; this.pb_grey.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb_grey.Image = global::CaptchaRecogition.Properties.Resources.gray; + this.pb_grey.Image = global::RECAPTCHA.Properties.Resources.gray; this.pb_grey.Location = new System.Drawing.Point(212, 149); this.pb_grey.Name = "pb_grey"; this.pb_grey.Size = new System.Drawing.Size(92, 36); @@ -637,7 +637,7 @@ private void InitializeComponent() // pb_bg // this.pb_bg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb_bg.Image = global::CaptchaRecogition.Properties.Resources.beijing; + this.pb_bg.Image = global::RECAPTCHA.Properties.Resources.beijing; this.pb_bg.Location = new System.Drawing.Point(213, 198); this.pb_bg.Name = "pb_bg"; this.pb_bg.Size = new System.Drawing.Size(92, 37); @@ -648,7 +648,7 @@ private void InitializeComponent() // pb_noise // this.pb_noise.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb_noise.Image = global::CaptchaRecogition.Properties.Resources.noise; + this.pb_noise.Image = global::RECAPTCHA.Properties.Resources.noise; this.pb_noise.Location = new System.Drawing.Point(215, 254); this.pb_noise.Name = "pb_noise"; this.pb_noise.Size = new System.Drawing.Size(90, 37); @@ -659,7 +659,7 @@ private void InitializeComponent() // pb_noise_binary // this.pb_noise_binary.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pb_noise_binary.Image = global::CaptchaRecogition.Properties.Resources.binary; + this.pb_noise_binary.Image = global::RECAPTCHA.Properties.Resources.binary; this.pb_noise_binary.Location = new System.Drawing.Point(215, 302); this.pb_noise_binary.Name = "pb_noise_binary"; this.pb_noise_binary.Size = new System.Drawing.Size(91, 37); @@ -908,7 +908,7 @@ private void InitializeComponent() // pictureBox2 // this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox2.Image = global::CaptchaRecogition.Properties.Resources._1; + this.pictureBox2.Image = global::RECAPTCHA.Properties.Resources._1; this.pictureBox2.Location = new System.Drawing.Point(18, 182); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(56, 42); @@ -919,7 +919,7 @@ private void InitializeComponent() // pictureBox1 // this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox1.Image = global::CaptchaRecogition.Properties.Resources.big; + this.pictureBox1.Image = global::RECAPTCHA.Properties.Resources.big; this.pictureBox1.Location = new System.Drawing.Point(15, 11); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(189, 82); @@ -931,7 +931,7 @@ private void InitializeComponent() // pictureBox3 // this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox3.Image = global::CaptchaRecogition.Properties.Resources._2; + this.pictureBox3.Image = global::RECAPTCHA.Properties.Resources._2; this.pictureBox3.Location = new System.Drawing.Point(80, 183); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(52, 40); @@ -942,7 +942,7 @@ private void InitializeComponent() // pictureBox4 // this.pictureBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox4.Image = global::CaptchaRecogition.Properties.Resources._3; + this.pictureBox4.Image = global::RECAPTCHA.Properties.Resources._3; this.pictureBox4.Location = new System.Drawing.Point(143, 182); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(54, 40); @@ -953,7 +953,7 @@ private void InitializeComponent() // pictureBox7 // this.pictureBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox7.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pictureBox7.Image = global::RECAPTCHA.Properties.Resources._null; this.pictureBox7.Location = new System.Drawing.Point(80, 233); this.pictureBox7.Name = "pictureBox7"; this.pictureBox7.Size = new System.Drawing.Size(51, 41); @@ -964,7 +964,7 @@ private void InitializeComponent() // pictureBox6 // this.pictureBox6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox6.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pictureBox6.Image = global::RECAPTCHA.Properties.Resources._null; this.pictureBox6.Location = new System.Drawing.Point(18, 233); this.pictureBox6.Name = "pictureBox6"; this.pictureBox6.Size = new System.Drawing.Size(51, 41); @@ -975,7 +975,7 @@ private void InitializeComponent() // pictureBox5 // this.pictureBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox5.Image = global::CaptchaRecogition.Properties.Resources._4; + this.pictureBox5.Image = global::RECAPTCHA.Properties.Resources._4; this.pictureBox5.Location = new System.Drawing.Point(210, 183); this.pictureBox5.Name = "pictureBox5"; this.pictureBox5.Size = new System.Drawing.Size(51, 41); @@ -1220,7 +1220,7 @@ private void InitializeComponent() // pictureBox10 // this.pictureBox10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox10.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pictureBox10.Image = global::RECAPTCHA.Properties.Resources._null; this.pictureBox10.Location = new System.Drawing.Point(146, 233); this.pictureBox10.Name = "pictureBox10"; this.pictureBox10.Size = new System.Drawing.Size(51, 41); @@ -1231,7 +1231,7 @@ private void InitializeComponent() // pictureBox11 // this.pictureBox11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pictureBox11.Image = global::CaptchaRecogition.Properties.Resources._null; + this.pictureBox11.Image = global::RECAPTCHA.Properties.Resources._null; this.pictureBox11.Location = new System.Drawing.Point(210, 233); this.pictureBox11.Name = "pictureBox11"; this.pictureBox11.Size = new System.Drawing.Size(51, 41); diff --git a/ReCapcha/Test/Main.cs b/RECAPTCHA/RECAPTCHA/Main.cs similarity index 99% rename from ReCapcha/Test/Main.cs rename to RECAPTCHA/RECAPTCHA/Main.cs index f407291..b0cdac0 100644 --- a/ReCapcha/Test/Main.cs +++ b/RECAPTCHA/RECAPTCHA/Main.cs @@ -12,7 +12,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using ReCapcha; +using RECAPTCHA; namespace CaptchaRecogition { @@ -450,7 +450,7 @@ private void btn_recognize_Click(object sender, EventArgs e) //string sb = ImageProcess.GetYZMCode(pborigin.Image, zimoPath, 1, pborigin.Image.Width/4, // pborigin.Image.Height,graytype); Image img2 = (Image)pborigin.Image.Clone(); - string sb = ImageProcess.GetYZMCode(img2, zimoPath, noiseThreshold , 20, 30,graytype,isFourChars ,minWidth ); + string sb = ImageProcess.GetCAPTCHACode(img2, zimoPath, noiseThreshold , 20, 30,graytype,isFourChars ,minWidth ); lbl_recoResult.Text = sb; btn_OK.Enabled = true; btn_NO.Enabled = true; diff --git a/ReCapcha/Test/Test4Captcha.resx b/RECAPTCHA/RECAPTCHA/Main.resx similarity index 100% rename from ReCapcha/Test/Test4Captcha.resx rename to RECAPTCHA/RECAPTCHA/Main.resx diff --git a/ReCapcha/Test/Program.cs b/RECAPTCHA/RECAPTCHA/Program.cs similarity index 78% rename from ReCapcha/Test/Program.cs rename to RECAPTCHA/RECAPTCHA/Program.cs index c374465..5861d8c 100644 --- a/ReCapcha/Test/Program.cs +++ b/RECAPTCHA/RECAPTCHA/Program.cs @@ -1,10 +1,8 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; using System.Windows.Forms; +using CaptchaRecogition; -namespace CaptchaRecogition +namespace RECAPTCHA { static class Program { diff --git a/ReCapcha/Test/Properties/AssemblyInfo.cs b/RECAPTCHA/RECAPTCHA/Properties/AssemblyInfo.cs similarity index 89% rename from ReCapcha/Test/Properties/AssemblyInfo.cs rename to RECAPTCHA/RECAPTCHA/Properties/AssemblyInfo.cs index 662683a..2a0fbd5 100644 --- a/ReCapcha/Test/Properties/AssemblyInfo.cs +++ b/RECAPTCHA/RECAPTCHA/Properties/AssemblyInfo.cs @@ -5,12 +5,12 @@ // 有关程序集的常规信息通过以下 // 特性集控制。更改这些特性值可修改 // 与程序集关联的信息。 -[assembly: AssemblyTitle("Test")] +[assembly: AssemblyTitle("RECAPTCHA")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Test")] -[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyProduct("RECAPTCHA")] +[assembly: AssemblyCopyright("Copyright © 2019")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/ReCapcha/Test/Properties/Resources.Designer.cs b/RECAPTCHA/RECAPTCHA/Properties/Resources.Designer.cs similarity index 95% rename from ReCapcha/Test/Properties/Resources.Designer.cs rename to RECAPTCHA/RECAPTCHA/Properties/Resources.Designer.cs index 8c4a914..91dfb36 100644 --- a/ReCapcha/Test/Properties/Resources.Designer.cs +++ b/RECAPTCHA/RECAPTCHA/Properties/Resources.Designer.cs @@ -1,14 +1,14 @@ //------------------------------------------------------------------------------ // // 此代码由工具生成。 -// 运行时版本:4.0.30319.34014 +// 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ -namespace CaptchaRecogition.Properties { +namespace RECAPTCHA.Properties { using System; @@ -19,7 +19,7 @@ namespace CaptchaRecogition.Properties { // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen // (以 /str 作为命令选项),或重新生成 VS 项目。 - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CaptchaRecogition.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RECAPTCHA.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; @@ -47,7 +47,7 @@ internal Resources() { } /// - /// 使用此强类型资源类,为所有资源查找 + /// 重写当前线程的 CurrentUICulture 属性 /// 重写当前线程的 CurrentUICulture 属性。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] diff --git a/ReCapcha/Test/Properties/Resources.resx b/RECAPTCHA/RECAPTCHA/Properties/Resources.resx similarity index 100% rename from ReCapcha/Test/Properties/Resources.resx rename to RECAPTCHA/RECAPTCHA/Properties/Resources.resx diff --git a/ReCapcha/Test/Properties/Settings.Designer.cs b/RECAPTCHA/RECAPTCHA/Properties/Settings.Designer.cs similarity index 90% rename from ReCapcha/Test/Properties/Settings.Designer.cs rename to RECAPTCHA/RECAPTCHA/Properties/Settings.Designer.cs index d0a4fc5..cd0be39 100644 --- a/ReCapcha/Test/Properties/Settings.Designer.cs +++ b/RECAPTCHA/RECAPTCHA/Properties/Settings.Designer.cs @@ -1,18 +1,18 @@ //------------------------------------------------------------------------------ // // 此代码由工具生成。 -// 运行时版本:4.0.30319.34014 +// 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ -namespace CaptchaRecogition.Properties { +namespace RECAPTCHA.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/ReCapcha/Test/Properties/Settings.settings b/RECAPTCHA/RECAPTCHA/Properties/Settings.settings similarity index 100% rename from ReCapcha/Test/Properties/Settings.settings rename to RECAPTCHA/RECAPTCHA/Properties/Settings.settings diff --git a/ReCapcha/Test/AutoRecogize.csproj b/RECAPTCHA/RECAPTCHA/RECAPTCHA.csproj similarity index 79% rename from ReCapcha/Test/AutoRecogize.csproj rename to RECAPTCHA/RECAPTCHA/RECAPTCHA.csproj index cfd61f0..b3ed608 100644 --- a/ReCapcha/Test/AutoRecogize.csproj +++ b/RECAPTCHA/RECAPTCHA/RECAPTCHA.csproj @@ -7,9 +7,9 @@ {7EA042CA-D4B0-4EAF-A09D-0850526D0D73} WinExe Properties - CaptchaRecogition - CaptchaRecogition - v4.0 + RECAPTCHA + RECAPTCHA + v4.7.1 512 发布\ @@ -38,6 +38,7 @@ prompt 4 true + false AnyCPU @@ -47,6 +48,7 @@ TRACE prompt 4 + false logo.ico @@ -64,11 +66,11 @@ - + Form - - Test4Captcha.cs + + 05验证.cs Form @@ -77,55 +79,56 @@ Main.cs - + Form - - Process1.cs + + 01灰度化.cs - + Form - - Process2.cs + + 02去背景.cs + Form - + Form - - Process3.cs + + 03噪点处理.cs - + Form - - Process4.cs + + 04二值化.cs - + Form - - ZimoList.cs + + 字模处理.cs - - Test4Captcha.cs + + 05验证.cs Main.cs - - Process1.cs + + 01灰度化.cs - - Process2.cs + + 02去背景.cs - - Process3.cs + + 03噪点处理.cs - - Process4.cs + + 04二值化.cs ResXFileCodeGenerator @@ -137,8 +140,8 @@ Resources.resx True - - ZimoList.cs + + 字模处理.cs SettingsSingleFileGenerator diff --git a/ReCapcha/Test/AutoRecogize.csproj.user b/RECAPTCHA/RECAPTCHA/RECAPTCHA.csproj.user similarity index 100% rename from ReCapcha/Test/AutoRecogize.csproj.user rename to RECAPTCHA/RECAPTCHA/RECAPTCHA.csproj.user diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.exe b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.exe similarity index 66% rename from ReCapcha/Test/bin/Debug/CaptchaRecogition.exe rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.exe index 8652299..81f85db 100644 Binary files a/ReCapcha/Test/bin/Debug/CaptchaRecogition.exe and b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.exe differ diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.exe.config b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.exe.config similarity index 100% rename from ReCapcha/Test/bin/Debug/CaptchaRecogition.exe.config rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.exe.config diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.pdb b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.pdb new file mode 100644 index 0000000..be39178 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.pdb differ diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe similarity index 100% rename from ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe.config b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe.config similarity index 100% rename from ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe.config rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe.config diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe.manifest b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe.manifest similarity index 100% rename from ReCapcha/Test/bin/Debug/CaptchaRecogition.vshost.exe.manifest rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogition.vshost.exe.manifest diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogiz.vshost.exe.config b/RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogiz.vshost.exe.config similarity index 100% rename from ReCapcha/Test/bin/Debug/CaptchaRecogiz.vshost.exe.config rename to RECAPTCHA/RECAPTCHA/bin/Debug/CaptchaRecogiz.vshost.exe.config diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe new file mode 100644 index 0000000..3c1e1cb Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe differ diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe.config b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe.config new file mode 100644 index 0000000..8fc0551 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.pdb b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.pdb new file mode 100644 index 0000000..5693d9e Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/bin/Debug/RECAPTCHA.pdb differ diff --git a/ReCapcha/Test/bin/Debug/Test.vshost.exe.config b/RECAPTCHA/RECAPTCHA/bin/Debug/Test.vshost.exe.config similarity index 100% rename from ReCapcha/Test/bin/Debug/Test.vshost.exe.config rename to RECAPTCHA/RECAPTCHA/bin/Debug/Test.vshost.exe.config diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/fudan/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/fudan/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/zimo.txt diff --git "a/ReCapcha/Test/bin/Debug/captcha/noise_pics/\345\231\252\347\202\271\351\230\210\345\200\2742.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/\345\255\227\347\254\246\346\234\200\345\260\217\345\256\275\345\272\2466.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/captcha/noise_pics/\345\231\252\347\202\271\351\230\210\345\200\2742.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/captcha/fudan/\345\255\227\347\254\246\346\234\200\345\260\217\345\256\275\345\272\2466.txt" diff --git a/ReCapcha/Test/bin/Debug/captcha/game/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/game/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/game/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/game/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/54.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/55.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/56.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/57.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/58.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/59.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/60.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/61.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/62.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/63.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/64.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/65.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/66.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/67.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/68.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/69.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/70.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/71.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/72.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/73.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/74.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/75.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/76.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/77.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/78.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/79.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/80.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/81.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/82.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/83.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/84.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/85.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/86.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/87.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/88.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/89.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/90.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/91.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/92.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/93.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/94.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/95.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/96.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/97.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/98.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/99.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/jinshannetwork/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/jinshannetwork/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/jinshannetwork/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/100.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/100.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/100.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/100.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/101.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/101.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/101.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/101.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/102.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/102.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/102.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/102.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/103.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/103.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/103.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/103.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/104.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/104.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/104.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/104.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/105.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/105.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/105.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/105.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/106.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/106.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/106.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/106.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/107.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/107.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/107.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/107.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/108.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/108.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/108.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/108.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/109.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/109.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/109.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/109.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/110.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/110.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/110.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/110.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/111.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/111.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/111.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/111.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/112.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/112.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/112.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/112.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/113.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/113.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/113.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/113.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/114.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/114.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/114.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/114.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/115.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/115.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/115.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/115.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/116.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/116.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/116.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/116.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/117.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/117.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/117.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/117.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/118.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/118.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/118.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/118.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/119.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/119.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/119.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/119.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/120.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/120.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/120.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/120.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/121.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/121.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/121.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/121.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/122.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/122.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/122.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/122.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/123.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/123.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/123.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/123.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/124.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/124.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/124.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/124.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/125.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/125.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/125.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/125.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/126.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/126.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/126.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/126.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/127.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/127.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/127.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/127.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/128.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/128.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/128.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/128.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/129.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/129.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/129.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/129.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/130.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/130.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/130.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/130.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/131.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/131.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/131.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/131.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/132.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/132.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/132.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/132.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/133.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/133.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/133.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/133.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/134.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/134.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/134.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/134.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/135.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/135.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/135.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/135.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/136.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/136.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/136.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/136.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/137.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/137.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/137.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/137.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/138.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/138.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/138.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/138.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/139.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/139.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/139.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/139.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/140.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/140.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/140.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/140.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/141.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/141.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/141.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/141.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/142.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/142.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/142.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/142.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/143.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/143.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/143.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/143.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/144.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/144.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/144.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/144.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/145.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/145.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/145.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/145.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/146.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/146.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/146.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/146.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/147.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/147.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/147.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/147.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/148.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/148.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/148.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/148.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/149.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/149.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/149.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/149.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/150.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/150.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/150.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/150.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/151.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/151.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/151.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/151.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/152.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/152.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/152.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/152.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/153.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/153.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/153.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/153.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/154.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/154.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/154.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/154.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/155.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/155.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/155.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/155.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/156.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/156.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/156.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/156.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/157.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/157.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/157.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/157.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/158.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/158.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/158.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/158.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/159.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/159.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/159.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/159.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/160.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/160.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/160.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/160.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/161.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/161.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/161.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/161.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/162.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/162.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/162.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/162.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/163.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/163.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/163.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/163.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/164.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/164.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/164.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/164.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/165.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/165.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/165.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/165.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/166.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/166.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/166.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/166.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/167.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/167.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/167.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/167.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/168.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/168.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/168.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/168.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/169.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/169.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/169.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/169.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/170.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/170.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/170.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/170.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/171.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/171.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/171.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/171.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/172.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/172.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/172.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/172.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/173.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/173.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/173.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/173.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/174.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/174.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/174.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/174.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/175.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/175.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/175.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/175.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/176.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/176.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/176.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/176.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/177.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/177.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/177.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/177.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/178.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/178.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/178.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/178.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/179.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/179.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/179.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/179.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/180.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/180.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/180.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/180.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/181.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/181.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/181.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/181.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/182.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/182.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/182.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/182.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/183.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/183.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/183.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/183.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/184.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/184.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/184.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/184.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/185.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/185.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/185.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/185.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/186.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/186.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/186.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/186.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/187.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/187.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/187.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/187.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/188.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/188.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/188.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/188.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/189.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/189.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/189.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/189.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/190.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/190.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/190.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/190.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/191.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/191.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/191.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/191.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/192.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/192.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/192.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/192.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/193.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/193.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/193.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/193.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/194.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/194.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/194.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/194.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/195.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/195.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/195.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/195.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/196.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/196.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/196.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/196.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/197.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/197.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/197.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/197.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/198.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/198.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/198.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/198.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/199.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/199.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/199.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/199.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/54.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/55.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/56.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/57.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/58.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/59.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/60.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/61.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/62.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/63.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/64.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/65.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/66.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/67.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/68.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/69.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/70.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/71.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/72.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/73.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/74.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/75.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/76.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/77.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/78.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/79.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/80.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/81.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/82.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/83.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/84.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/85.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/86.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/87.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/88.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/89.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/90.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/91.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/92.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/93.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/94.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/95.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/96.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/97.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/98.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/99.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/kuwo/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/kuwo/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/kuwo/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/100.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/100.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/100.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/100.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/101.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/101.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/101.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/101.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/102.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/102.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/102.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/102.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/103.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/103.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/103.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/103.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/104.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/104.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/104.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/104.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/105.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/105.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/105.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/105.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/106.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/106.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/106.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/106.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/107.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/107.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/107.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/107.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/108.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/108.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/108.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/108.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/109.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/109.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/109.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/109.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/110.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/110.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/110.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/110.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/111.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/111.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/111.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/111.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/112.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/112.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/112.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/112.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/113.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/113.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/113.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/113.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/114.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/114.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/114.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/114.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/115.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/115.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/115.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/115.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/116.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/116.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/116.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/116.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/117.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/117.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/117.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/117.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/118.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/118.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/118.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/118.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/119.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/119.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/119.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/119.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/120.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/120.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/120.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/120.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/121.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/121.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/121.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/121.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/122.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/122.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/122.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/122.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/123.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/123.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/123.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/123.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/124.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/124.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/124.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/124.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/125.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/125.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/125.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/125.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/126.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/126.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/126.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/126.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/127.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/127.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/127.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/127.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/128.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/128.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/128.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/128.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/129.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/129.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/129.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/129.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/130.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/130.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/130.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/130.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/131.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/131.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/131.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/131.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/132.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/132.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/132.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/132.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/133.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/133.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/133.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/133.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/134.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/134.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/134.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/134.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/135.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/135.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/135.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/135.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/136.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/136.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/136.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/136.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/137.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/137.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/137.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/137.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/138.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/138.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/138.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/138.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/139.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/139.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/139.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/139.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/140.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/140.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/140.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/140.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/141.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/141.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/141.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/141.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/142.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/142.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/142.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/142.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/143.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/143.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/143.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/143.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/144.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/144.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/144.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/144.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/145.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/145.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/145.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/145.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/146.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/146.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/146.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/146.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/147.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/147.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/147.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/147.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/148.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/148.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/148.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/148.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/149.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/149.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/149.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/149.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/150.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/150.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/150.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/150.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/151.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/151.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/151.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/151.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/152.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/152.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/152.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/152.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/153.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/153.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/153.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/153.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/154.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/154.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/154.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/154.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/155.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/155.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/155.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/155.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/156.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/156.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/156.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/156.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/157.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/157.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/157.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/157.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/158.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/158.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/158.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/158.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/159.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/159.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/159.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/159.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/160.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/160.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/160.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/160.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/161.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/161.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/161.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/161.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/162.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/162.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/162.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/162.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/163.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/163.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/163.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/163.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/164.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/164.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/164.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/164.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/165.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/165.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/165.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/165.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/166.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/166.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/166.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/166.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/167.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/167.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/167.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/167.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/168.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/168.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/168.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/168.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/169.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/169.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/169.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/169.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/170.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/170.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/170.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/170.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/171.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/171.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/171.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/171.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/172.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/172.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/172.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/172.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/173.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/173.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/173.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/173.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/174.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/174.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/174.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/174.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/175.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/175.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/175.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/175.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/176.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/176.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/176.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/176.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/177.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/177.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/177.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/177.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/178.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/178.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/178.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/178.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/179.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/179.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/179.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/179.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/180.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/180.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/180.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/180.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/181.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/181.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/181.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/181.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/182.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/182.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/182.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/182.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/183.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/183.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/183.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/183.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/184.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/184.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/184.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/184.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/185.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/185.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/185.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/185.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/186.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/186.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/186.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/186.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/187.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/187.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/187.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/187.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/188.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/188.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/188.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/188.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/189.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/189.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/189.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/189.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/190.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/190.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/190.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/190.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/191.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/191.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/191.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/191.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/192.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/192.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/192.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/192.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/193.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/193.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/193.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/193.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/194.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/194.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/194.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/194.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/195.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/195.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/195.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/195.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/196.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/196.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/196.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/196.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/197.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/197.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/197.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/197.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/198.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/198.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/198.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/198.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/199.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/199.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/199.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/199.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/54.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/55.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/56.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/57.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/58.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/59.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/60.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/61.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/62.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/63.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/64.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/65.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/66.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/67.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/68.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/69.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/70.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/71.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/72.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/73.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/74.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/75.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/76.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/77.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/78.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/79.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/80.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/81.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/82.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/83.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/84.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/85.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/86.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/87.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/88.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/89.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/90.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/91.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/92.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/93.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/94.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/95.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/96.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/97.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/98.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/99.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/noise_pics/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/noise_pics/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/zimo.txt diff --git a/ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs "b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/\345\231\252\347\202\271\351\230\210\345\200\2742.txt" similarity index 100% rename from ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs rename to "RECAPTCHA/RECAPTCHA/bin/Debug/captcha/noise_pics/\345\231\252\347\202\271\351\230\210\345\200\2742.txt" diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/54.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/55.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/56.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/57.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/58.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/59.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/60.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/61.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/62.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/63.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/64.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/65.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/66.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/67.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/68.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/69.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/70.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/71.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/72.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/73.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/74.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/75.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/76.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/77.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/78.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/79.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/80.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/81.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/82.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/83.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/84.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/85.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/86.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/87.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/88.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/89.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/90.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/91.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/92.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/93.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/94.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/95.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/96.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/97.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/98.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/99.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/shanghailigong/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/shanghailigong/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/shanghailigong/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/sspu/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/sspu/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/sspu/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/54.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/55.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/56.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/57.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/58.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/59.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/60.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/61.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/62.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/63.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/64.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/65.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/66.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/67.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/68.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/69.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/70.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/71.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/72.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/73.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/74.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/75.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/76.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/77.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/78.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/79.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/80.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/81.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/82.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/83.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/84.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/85.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/86.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/87.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/88.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/89.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/90.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/91.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/92.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/93.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/94.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/95.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/96.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/97.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/98.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/99.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/tongji/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/tongji/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/tongji/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/0.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/1.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/10.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/11.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/12.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/13.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/14.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/15.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/16.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/17.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/18.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/19.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/2.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/20.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/21.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/22.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/23.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/24.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/25.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/26.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/27.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/28.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/29.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/3.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/30.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/31.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/32.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/33.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/34.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/35.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/36.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/37.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/38.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/39.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/4.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/40.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/41.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/42.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/43.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/44.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/45.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/46.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/47.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/48.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/49.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/5.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/50.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/51.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/52.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/53.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/6.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/7.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/8.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/9.jpg diff --git a/ReCapcha/Test/bin/Debug/captcha/zhongqingbao/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/captcha/zhongqingbao/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/captcha/zhongqingbao/zimo.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/0_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/0_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/0_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/0_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/0_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/0_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/0_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/0_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/0_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/0_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/0_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/103_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/103_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/103_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/103_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/103_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/103_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/103_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/103_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/103_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/103_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/103_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/105_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/105_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/105_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/105_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/105_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/105_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/105_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/105_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/105_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/105_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/105_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/109_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/109_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/109_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/109_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/109_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/109_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/109_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/109_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/10_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/10_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/10_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/10_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/10_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/10_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/10_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/10_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/10_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/10_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/10_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/110_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/110_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/110_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/110_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/110_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/110_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/110_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/110_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/110_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/110_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/110_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/118_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/118_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/118_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/118_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/118_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/118_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/118_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/118_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/11_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/11_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/11_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/11_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/11_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/11_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/11_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/11_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/11_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/11_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/11_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/124_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/124_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/124_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/124_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/124_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/124_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/124_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/124_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/124_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/124_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/124_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/126_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/126_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/126_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/126_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/126_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/126_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/126_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/126_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/12_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/12_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/12_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/12_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/12_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/12_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/12_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/12_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/12_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/12_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/12_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/130_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/130_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/130_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/130_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/130_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/130_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/130_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/130_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/130_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/130_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/130_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/137_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/137_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/137_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/137_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/137_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/137_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/137_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/137_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/137_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/137_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/137_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/13_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/13_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/13_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/13_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/13_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/13_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/13_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/13_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/13_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/13_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/13_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/145_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/145_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/145_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/145_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/145_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/145_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/145_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/145_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/145_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/145_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/145_original.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_bged.txt new file mode 100644 index 0000000..640ce85 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_bged.txt @@ -0,0 +1,100 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 1,1,1 8,8,8 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 0,0,0 6,6,6 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 15,15,15 8,8,8 0,0,0 13,13,13 0,0,0 0,0,0 2,2,2 3,3,3 14,14,14 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 6,6,6 8,8,8 0,0,0 7,7,7 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 11,11,11 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 19,19,19 3,3,3 0,0,0 12,12,12 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 21,21,21 10,10,10 8,8,8 14,14,14 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 22,22,22 0,0,0 0,0,0 15,15,15 0,0,0 5,5,5 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 2,2,2 8,8,8 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 3,3,3 8,8,8 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 11,11,11 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 6,6,6 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 11,11,11 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 7,7,7 2,2,2 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 4,4,4 3,3,3 0,0,0 13,13,13 16,16,16 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 16,16,16 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 0,0,0 10,10,10 0,0,0 14,14,14 6,6,6 2,2,2 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 5,5,5 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 1,1,1 0,0,0 1,1,1 0,0,0 3,3,3 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 17,17,17 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 7,7,7 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 6,6,6 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 14,14,14 0,0,0 5,5,5 11,11,11 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 10,10,10 0,0,0 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 6,6,6 0,0,0 24,24,24 7,7,7 0,0,0 5,5,5 13,13,13 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 0,0,0 21,21,21 1,1,1 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 11,11,11 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 20,20,20 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 14,14,14 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 255,255,255 7,7,7 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 25,25,25 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 5,5,5 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 9,9,9 0,0,0 0,0,0 6,6,6 3,3,3 1,1,1 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 4,4,4 5,5,5 10,10,10 0,0,0 0,0,0 25,25,25 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 7,7,7 0,0,0 15,15,15 0,0,0 6,6,6 3,3,3 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 8,8,8 7,7,7 19,19,19 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 7,7,7 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 4,4,4 0,0,0 15,15,15 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 12,12,12 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 22,22,22 0,0,0 0,0,0 18,18,18 0,0,0 1,1,1 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 8,8,8 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 1,1,1 6,6,6 0,0,0 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 15,15,15 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 3,3,3 6,6,6 2,2,2 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 16,16,16 0,0,0 0,0,0 2,2,2 0,0,0 10,10,10 7,7,7 0,0,0 17,17,17 0,0,0 0,0,0 0,0,0 5,5,5 15,15,15 0,0,0 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 9,9,9 0,0,0 0,0,0 9,9,9 0,0,0 10,10,10 4,4,4 0,0,0 0,0,0 8,8,8 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 0,0,0 5,5,5 1,1,1 0,0,0 0,0,0 11,11,11 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 5,5,5 7,7,7 0,0,0 9,9,9 0,0,0 5,5,5 0,0,0 12,12,12 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 5,5,5 11,11,11 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 18,18,18 0,0,0 0,0,0 3,3,3 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 0,0,0 1,1,1 1,1,1 0,0,0 1,1,1 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 3,3,3 5,5,5 1,1,1 0,0,0 2,2,2 16,16,16 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 3,3,3 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 11,11,11 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 8,8,8 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 9,9,9 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 19,19,19 7,7,7 8,8,8 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 10,10,10 0,0,0 8,8,8 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 37,37,37 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 15,15,15 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 12,12,12 17,17,17 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 7,7,7 0,0,0 6,6,6 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 0,0,0 0,0,0 4,4,4 3,3,3 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 5,5,5 0,0,0 0,0,0 15,15,15 1,1,1 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 4,4,4 255,255,255 13,13,13 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 4,4,4 0,0,0 3,3,3 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 7,7,7 0,0,0 0,0,0 3,3,3 2,2,2 0,0,0 0,0,0 0,0,0 1,1,1 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 13,13,13 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 20,20,20 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 16,16,16 0,0,0 12,12,12 5,5,5 2,2,2 0,0,0 4,4,4 6,6,6 10,10,10 255,255,255 0,0,0 1,1,1 13,13,13 0,0,0 4,4,4 2,2,2 5,5,5 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 5,5,5 1,1,1 0,0,0 0,0,0 0,0,0 2,2,2 3,3,3 0,0,0 3,3,3 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 10,10,10 2,2,2 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 10,10,10 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 1,1,1 0,0,0 0,0,0 6,6,6 12,12,12 4,4,4 0,0,0 255,255,255 1,1,1 0,0,0 0,0,0 0,0,0 18,18,18 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 5,5,5 6,6,6 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 11,11,11 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 14,14,14 2,2,2 0,0,0 25,25,25 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 8,8,8 1,1,1 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 12,12,12 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 6,6,6 0,0,0 0,0,0 0,0,0 2,2,2 5,5,5 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 16,16,16 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 1,1,1 6,6,6 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 4,4,4 0,0,0 10,10,10 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 1,1,1 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 0,0,0 6,6,6 4,4,4 0,0,0 8,8,8 4,4,4 0,0,0 12,12,12 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 11,11,11 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 8,8,8 2,2,2 0,0,0 10,10,10 1,1,1 0,0,0 10,10,10 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 0,0,0 27,27,27 0,0,0 2,2,2 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 7,7,7 0,0,0 3,3,3 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 10,10,10 0,0,0 0,0,0 0,0,0 7,7,7 6,6,6 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 4,4,4 0,0,0 27,27,27 0,0,0 2,2,2 8,8,8 5,5,5 0,0,0 0,0,0 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 6,6,6 0,0,0 0,0,0 0,0,0 17,17,17 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 22,22,22 0,0,0 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 16,16,16 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 12,12,12 6,6,6 0,0,0 0,0,0 1,1,1 6,6,6 0,0,0 13,13,13 5,5,5 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 7,7,7 2,2,2 13,13,13 0,0,0 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 9,9,9 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 22,22,22 4,4,4 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 18,18,18 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 12,12,12 0,0,0 1,1,1 1,1,1 15,15,15 0,0,0 5,5,5 5,5,5 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 2,2,2 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 6,6,6 4,4,4 0,0,0 2,2,2 5,5,5 12,12,12 0,0,0 11,11,11 0,0,0 4,4,4 15,15,15 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 3,3,3 11,11,11 0,0,0 0,0,0 9,9,9 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 5,5,5 6,6,6 0,0,0 1,1,1 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 10,10,10 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 0,0,0 17,17,17 8,8,8 0,0,0 0,0,0 4,4,4 1,1,1 2,2,2 6,6,6 14,14,14 255,255,255 255,255,255 0,0,0 8,8,8 6,6,6 11,11,11 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 7,7,7 3,3,3 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 18,18,18 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 16,16,16 4,4,4 0,0,0 2,2,2 0,0,0 9,9,9 6,6,6 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 3,3,3 2,2,2 3,3,3 6,6,6 3,3,3 7,7,7 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 2,2,2 255,255,255 3,3,3 2,2,2 0,0,0 3,3,3 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 8,8,8 0,0,0 5,5,5 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 4,4,4 1,1,1 0,0,0 0,0,0 9,9,9 0,0,0 4,4,4 21,21,21 0,0,0 13,13,13 255,255,255 5,5,5 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 9,9,9 5,5,5 0,0,0 6,6,6 0,0,0 14,14,14 0,0,0 3,3,3 20,20,20 0,0,0 14,14,14 255,255,255 10,10,10 0,0,0 14,14,14 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 1,1,1 0,0,0 5,5,5 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 11,11,11 3,3,3 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 10,10,10 0,0,0 19,19,19 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 11,11,11 5,5,5 0,0,0 2,2,2 4,4,4 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 17,17,17 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 11,11,11 0,0,0 1,1,1 0,0,0 5,5,5 1,1,1 2,2,2 15,15,15 0,0,0 8,8,8 3,3,3 0,0,0 4,4,4 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 12,12,12 0,0,0 0,0,0 1,1,1 7,7,7 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 1,1,1 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 19,19,19 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 5,5,5 17,17,17 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 1,1,1 6,6,6 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 3,3,3 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 18,18,18 0,0,0 0,0,0 17,17,17 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 13,13,13 5,5,5 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 0,0,0 4,4,4 17,17,17 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 2,2,2 0,0,0 5,5,5 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 15,15,15 0,0,0 0,0,0 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 5,5,5 6,6,6 17,17,17 0,0,0 5,5,5 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 18,18,18 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 1,1,1 0,0,0 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 5,5,5 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 0,0,0 9,9,9 0,0,0 8,8,8 0,0,0 0,0,0 5,5,5 9,9,9 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 11,11,11 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 0,0,0 0,0,0 6,6,6 7,7,7 15,15,15 0,0,0 0,0,0 13,13,13 0,0,0 12,12,12 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 2,2,2 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 12,12,12 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 10,10,10 0,0,0 0,0,0 14,14,14 0,0,0 12,12,12 0,0,0 8,8,8 0,0,0 4,4,4 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 8,8,8 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 11,11,11 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 4,4,4 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 3,3,3 8,8,8 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 17,17,17 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 1,1,1 2,2,2 6,6,6 0,0,0 0,0,0 9,9,9 0,0,0 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 19,19,19 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 11,11,11 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 12,12,12 1,1,1 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 11,11,11 14,14,14 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 6,6,6 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 11,11,11 11,11,11 0,0,0 6,6,6 2,2,2 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 0,0,0 2,2,2 6,6,6 5,5,5 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 17,17,17 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 7,7,7 2,2,2 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 2,2,2 0,0,0 255,255,255 0,0,0 19,19,19 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 1,1,1 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 14,14,14 2,2,2 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 6,6,6 4,4,4 2,2,2 0,0,0 0,0,0 9,9,9 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 13,13,13 0,0,0 16,16,16 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 7,7,7 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 1,1,1 7,7,7 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 10,10,10 0,0,0 10,10,10 6,6,6 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 2,2,2 0,0,0 7,7,7 0,0,0 4,4,4 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 21,21,21 0,0,0 6,6,6 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 0,0,0 19,19,19 255,255,255 255,255,255 7,7,7 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 11,11,11 12,12,12 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 5,5,5 5,5,5 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 2,2,2 0,0,0 0,0,0 1,1,1 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 1,1,1 2,2,2 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 23,23,23 7,7,7 0,0,0 0,0,0 4,4,4 16,16,16 0,0,0 13,13,13 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 26,26,26 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 7,7,7 2,2,2 0,0,0 15,15,15 6,6,6 3,3,3 5,5,5 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 1,1,1 0,0,0 0,0,0 23,23,23 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 4,4,4 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 3,3,3 5,5,5 0,0,0 0,0,0 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 0,0,0 8,8,8 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 8,8,8 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 2,2,2 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 3,3,3 0,0,0 1,1,1 0,0,0 1,1,1 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 4,4,4 1,1,1 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 3,3,3 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 1,1,1 0,0,0 3,3,3 6,6,6 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 5,5,5 3,3,3 0,0,0 0,0,0 0,0,0 11,11,11 19,19,19 0,0,0 1,1,1 18,18,18 0,0,0 7,7,7 0,0,0 0,0,0 1,1,1 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 16,16,16 4,4,4 4,4,4 3,3,3 8,8,8 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 0,0,0 2,2,2 2,2,2 3,3,3 8,8,8 0,0,0 17,17,17 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 5,5,5 0,0,0 7,7,7 24,24,24 0,0,0 6,6,6 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 3,3,3 26,26,26 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 14,14,14 19,19,19 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 6,6,6 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 14,14,14 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 15,15,15 6,6,6 8,8,8 21,21,21 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 11,11,11 0,0,0 8,8,8 12,12,12 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 12,12,12 1,1,1 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 9,9,9 0,0,0 18,18,18 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 9,9,9 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 5,5,5 2,2,2 3,3,3 0,0,0 3,3,3 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 5,5,5 0,0,0 15,15,15 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 8,8,8 7,7,7 2,2,2 0,0,0 12,12,12 13,13,13 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 255,255,255 20,20,20 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 16,16,16 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 1,1,1 0,0,0 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 4,4,4 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 0,0,0 1,1,1 2,2,2 5,5,5 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 13,13,13 4,4,4 3,3,3 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 25,25,25 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 7,7,7 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 2,2,2 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 0,0,0 3,3,3 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 23,23,23 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 3,3,3 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_binaried.txt new file mode 100644 index 0000000..6bea4e2 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_binaried.txt @@ -0,0 +1,100 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_noised.txt new file mode 100644 index 0000000..640ce85 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/14_noised.txt @@ -0,0 +1,100 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 1,1,1 8,8,8 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 0,0,0 6,6,6 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 15,15,15 8,8,8 0,0,0 13,13,13 0,0,0 0,0,0 2,2,2 3,3,3 14,14,14 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 6,6,6 8,8,8 0,0,0 7,7,7 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 11,11,11 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 19,19,19 3,3,3 0,0,0 12,12,12 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 21,21,21 10,10,10 8,8,8 14,14,14 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 22,22,22 0,0,0 0,0,0 15,15,15 0,0,0 5,5,5 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 2,2,2 8,8,8 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 3,3,3 8,8,8 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 11,11,11 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 6,6,6 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 11,11,11 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 7,7,7 2,2,2 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 4,4,4 3,3,3 0,0,0 13,13,13 16,16,16 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 16,16,16 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 0,0,0 10,10,10 0,0,0 14,14,14 6,6,6 2,2,2 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 5,5,5 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 1,1,1 0,0,0 1,1,1 0,0,0 3,3,3 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 17,17,17 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 7,7,7 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 6,6,6 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 14,14,14 0,0,0 5,5,5 11,11,11 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 10,10,10 0,0,0 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 6,6,6 0,0,0 24,24,24 7,7,7 0,0,0 5,5,5 13,13,13 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 0,0,0 21,21,21 1,1,1 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 11,11,11 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 20,20,20 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 14,14,14 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 255,255,255 7,7,7 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 25,25,25 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 5,5,5 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 9,9,9 0,0,0 0,0,0 6,6,6 3,3,3 1,1,1 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 4,4,4 5,5,5 10,10,10 0,0,0 0,0,0 25,25,25 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 7,7,7 0,0,0 15,15,15 0,0,0 6,6,6 3,3,3 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 8,8,8 7,7,7 19,19,19 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 7,7,7 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 4,4,4 0,0,0 15,15,15 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 12,12,12 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 22,22,22 0,0,0 0,0,0 18,18,18 0,0,0 1,1,1 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 8,8,8 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 1,1,1 6,6,6 0,0,0 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 15,15,15 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 3,3,3 6,6,6 2,2,2 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 16,16,16 0,0,0 0,0,0 2,2,2 0,0,0 10,10,10 7,7,7 0,0,0 17,17,17 0,0,0 0,0,0 0,0,0 5,5,5 15,15,15 0,0,0 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 9,9,9 0,0,0 0,0,0 9,9,9 0,0,0 10,10,10 4,4,4 0,0,0 0,0,0 8,8,8 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 0,0,0 5,5,5 1,1,1 0,0,0 0,0,0 11,11,11 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 5,5,5 7,7,7 0,0,0 9,9,9 0,0,0 5,5,5 0,0,0 12,12,12 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 5,5,5 11,11,11 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 18,18,18 0,0,0 0,0,0 3,3,3 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 0,0,0 1,1,1 1,1,1 0,0,0 1,1,1 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 3,3,3 5,5,5 1,1,1 0,0,0 2,2,2 16,16,16 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 3,3,3 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 11,11,11 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 8,8,8 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 9,9,9 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 19,19,19 7,7,7 8,8,8 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 10,10,10 0,0,0 8,8,8 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 37,37,37 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 15,15,15 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 12,12,12 17,17,17 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 7,7,7 0,0,0 6,6,6 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 0,0,0 0,0,0 4,4,4 3,3,3 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 5,5,5 0,0,0 0,0,0 15,15,15 1,1,1 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 4,4,4 255,255,255 13,13,13 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 4,4,4 0,0,0 3,3,3 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 7,7,7 0,0,0 0,0,0 3,3,3 2,2,2 0,0,0 0,0,0 0,0,0 1,1,1 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 13,13,13 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 20,20,20 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 16,16,16 0,0,0 12,12,12 5,5,5 2,2,2 0,0,0 4,4,4 6,6,6 10,10,10 255,255,255 0,0,0 1,1,1 13,13,13 0,0,0 4,4,4 2,2,2 5,5,5 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 5,5,5 1,1,1 0,0,0 0,0,0 0,0,0 2,2,2 3,3,3 0,0,0 3,3,3 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 10,10,10 2,2,2 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 10,10,10 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 1,1,1 0,0,0 0,0,0 6,6,6 12,12,12 4,4,4 0,0,0 255,255,255 1,1,1 0,0,0 0,0,0 0,0,0 18,18,18 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 5,5,5 6,6,6 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 11,11,11 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 14,14,14 2,2,2 0,0,0 25,25,25 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 8,8,8 1,1,1 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 12,12,12 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 6,6,6 0,0,0 0,0,0 0,0,0 2,2,2 5,5,5 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 16,16,16 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 1,1,1 6,6,6 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 4,4,4 0,0,0 10,10,10 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 1,1,1 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 0,0,0 6,6,6 4,4,4 0,0,0 8,8,8 4,4,4 0,0,0 12,12,12 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 11,11,11 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 8,8,8 2,2,2 0,0,0 10,10,10 1,1,1 0,0,0 10,10,10 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 0,0,0 27,27,27 0,0,0 2,2,2 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 7,7,7 0,0,0 3,3,3 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 10,10,10 0,0,0 0,0,0 0,0,0 7,7,7 6,6,6 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 4,4,4 0,0,0 27,27,27 0,0,0 2,2,2 8,8,8 5,5,5 0,0,0 0,0,0 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 6,6,6 0,0,0 0,0,0 0,0,0 17,17,17 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 22,22,22 0,0,0 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 16,16,16 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 12,12,12 6,6,6 0,0,0 0,0,0 1,1,1 6,6,6 0,0,0 13,13,13 5,5,5 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 7,7,7 2,2,2 13,13,13 0,0,0 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 9,9,9 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 22,22,22 4,4,4 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 18,18,18 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 12,12,12 0,0,0 1,1,1 1,1,1 15,15,15 0,0,0 5,5,5 5,5,5 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 2,2,2 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 6,6,6 4,4,4 0,0,0 2,2,2 5,5,5 12,12,12 0,0,0 11,11,11 0,0,0 4,4,4 15,15,15 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 3,3,3 11,11,11 0,0,0 0,0,0 9,9,9 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 5,5,5 6,6,6 0,0,0 1,1,1 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 10,10,10 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 0,0,0 17,17,17 8,8,8 0,0,0 0,0,0 4,4,4 1,1,1 2,2,2 6,6,6 14,14,14 255,255,255 255,255,255 0,0,0 8,8,8 6,6,6 11,11,11 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 7,7,7 3,3,3 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 18,18,18 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 16,16,16 4,4,4 0,0,0 2,2,2 0,0,0 9,9,9 6,6,6 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 3,3,3 2,2,2 3,3,3 6,6,6 3,3,3 7,7,7 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 2,2,2 255,255,255 3,3,3 2,2,2 0,0,0 3,3,3 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 8,8,8 0,0,0 5,5,5 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 4,4,4 1,1,1 0,0,0 0,0,0 9,9,9 0,0,0 4,4,4 21,21,21 0,0,0 13,13,13 255,255,255 5,5,5 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 9,9,9 5,5,5 0,0,0 6,6,6 0,0,0 14,14,14 0,0,0 3,3,3 20,20,20 0,0,0 14,14,14 255,255,255 10,10,10 0,0,0 14,14,14 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 1,1,1 0,0,0 5,5,5 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 11,11,11 3,3,3 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 10,10,10 0,0,0 19,19,19 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 11,11,11 5,5,5 0,0,0 2,2,2 4,4,4 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 17,17,17 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 11,11,11 0,0,0 1,1,1 0,0,0 5,5,5 1,1,1 2,2,2 15,15,15 0,0,0 8,8,8 3,3,3 0,0,0 4,4,4 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 12,12,12 0,0,0 0,0,0 1,1,1 7,7,7 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 1,1,1 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 0,0,0 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 19,19,19 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 5,5,5 17,17,17 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 1,1,1 6,6,6 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 3,3,3 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 18,18,18 0,0,0 0,0,0 17,17,17 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 13,13,13 5,5,5 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 0,0,0 4,4,4 17,17,17 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 2,2,2 0,0,0 5,5,5 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 15,15,15 0,0,0 0,0,0 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 5,5,5 6,6,6 17,17,17 0,0,0 5,5,5 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 18,18,18 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 3,3,3 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 1,1,1 0,0,0 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 5,5,5 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 0,0,0 9,9,9 0,0,0 8,8,8 0,0,0 0,0,0 5,5,5 9,9,9 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 11,11,11 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 0,0,0 0,0,0 6,6,6 7,7,7 15,15,15 0,0,0 0,0,0 13,13,13 0,0,0 12,12,12 0,0,0 7,7,7 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 2,2,2 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 12,12,12 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 10,10,10 0,0,0 0,0,0 14,14,14 0,0,0 12,12,12 0,0,0 8,8,8 0,0,0 4,4,4 0,0,0 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 8,8,8 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 11,11,11 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 4,4,4 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 3,3,3 8,8,8 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 17,17,17 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 1,1,1 2,2,2 6,6,6 0,0,0 0,0,0 9,9,9 0,0,0 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 15,15,15 19,19,19 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 11,11,11 6,6,6 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 12,12,12 1,1,1 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 11,11,11 14,14,14 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 6,6,6 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 11,11,11 11,11,11 0,0,0 6,6,6 2,2,2 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 0,0,0 0,0,0 2,2,2 6,6,6 5,5,5 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 13,13,13 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 17,17,17 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 7,7,7 2,2,2 11,11,11 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 2,2,2 0,0,0 255,255,255 0,0,0 19,19,19 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 1,1,1 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 14,14,14 2,2,2 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 6,6,6 4,4,4 2,2,2 0,0,0 0,0,0 9,9,9 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 13,13,13 0,0,0 16,16,16 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 7,7,7 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 1,1,1 7,7,7 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 10,10,10 0,0,0 10,10,10 6,6,6 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 15,15,15 2,2,2 0,0,0 7,7,7 0,0,0 4,4,4 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 21,21,21 0,0,0 6,6,6 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 0,0,0 19,19,19 255,255,255 255,255,255 7,7,7 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 11,11,11 12,12,12 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 5,5,5 5,5,5 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 2,2,2 0,0,0 0,0,0 1,1,1 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 1,1,1 2,2,2 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 23,23,23 7,7,7 0,0,0 0,0,0 4,4,4 16,16,16 0,0,0 13,13,13 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 26,26,26 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 7,7,7 2,2,2 0,0,0 15,15,15 6,6,6 3,3,3 5,5,5 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 1,1,1 0,0,0 0,0,0 23,23,23 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 4,4,4 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 3,3,3 5,5,5 0,0,0 0,0,0 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 0,0,0 8,8,8 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 8,8,8 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 2,2,2 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 3,3,3 0,0,0 1,1,1 0,0,0 1,1,1 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 4,4,4 1,1,1 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 3,3,3 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 1,1,1 0,0,0 3,3,3 6,6,6 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 5,5,5 3,3,3 0,0,0 0,0,0 0,0,0 11,11,11 19,19,19 0,0,0 1,1,1 18,18,18 0,0,0 7,7,7 0,0,0 0,0,0 1,1,1 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 9,9,9 0,0,0 16,16,16 4,4,4 4,4,4 3,3,3 8,8,8 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 14,14,14 0,0,0 2,2,2 2,2,2 3,3,3 8,8,8 0,0,0 17,17,17 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 5,5,5 0,0,0 7,7,7 24,24,24 0,0,0 6,6,6 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 3,3,3 26,26,26 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 14,14,14 19,19,19 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 6,6,6 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 14,14,14 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 15,15,15 6,6,6 8,8,8 21,21,21 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 11,11,11 0,0,0 8,8,8 12,12,12 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 12,12,12 1,1,1 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 9,9,9 0,0,0 18,18,18 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 9,9,9 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 6,6,6 5,5,5 2,2,2 3,3,3 0,0,0 3,3,3 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 5,5,5 0,0,0 15,15,15 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 8,8,8 7,7,7 2,2,2 0,0,0 12,12,12 13,13,13 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 255,255,255 20,20,20 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 16,16,16 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 1,1,1 0,0,0 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 16,16,16 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 4,4,4 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 1,1,1 0,0,0 0,0,0 1,1,1 2,2,2 5,5,5 0,0,0 13,13,13 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 13,13,13 4,4,4 3,3,3 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 25,25,25 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 7,7,7 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 2,2,2 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 7,7,7 0,0,0 3,3,3 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 23,23,23 0,0,0 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 3,3,3 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/155_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/155_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/155_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/155_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/155_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/155_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/155_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/155_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/155_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/155_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/155_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/158_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/158_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/158_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/158_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/158_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/158_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/158_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/158_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/158_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/158_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/158_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/159_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/159_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/159_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/159_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/159_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/159_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/159_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/159_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/159_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/159_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/159_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/15_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/15_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/15_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/15_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/15_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/15_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/15_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/15_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/15_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/15_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/15_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/162_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/162_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/162_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/162_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/162_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/162_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/162_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/162_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/162_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/162_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/162_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/16_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/16_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/16_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/16_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/16_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/16_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/16_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/16_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/16_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/16_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/16_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/170_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/170_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/170_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/170_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/170_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/170_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/170_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/170_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/170_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/170_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/170_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/172_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/172_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/172_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/172_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/172_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/172_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/172_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/172_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/172_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/172_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/172_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/178_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/178_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/178_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/178_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/178_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/178_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/178_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/178_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/17_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/17_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/17_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/17_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/17_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/17_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/17_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/17_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/17_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/17_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/17_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/182_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/182_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/182_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/182_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/182_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/182_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/182_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/182_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/184_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/184_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/184_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/184_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/184_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/184_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/184_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/184_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/189_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/189_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/189_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/189_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/189_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/189_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/189_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/189_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/189_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/189_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/189_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/18_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/18_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/18_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/18_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/18_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/18_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/18_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/18_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/18_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/18_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/18_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/193_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/193_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/193_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/193_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/193_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/193_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/193_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/193_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/193_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/193_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/193_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/198_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/198_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/198_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/198_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/198_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/198_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/198_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/198_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/198_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/198_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/198_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/19_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/19_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/19_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/19_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/19_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/19_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/19_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/1_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/1_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/1_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/1_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/1_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/1_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/1_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/1_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/1_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/1_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/1_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/20_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/20_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/20_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/20_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/20_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/20_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/20_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/21_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/21_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/21_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/21_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/21_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/21_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/21_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/21_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/21_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/21_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/21_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/22_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/22_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/22_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/22_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/22_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/22_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/22_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/22_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/22_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/22_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/22_original.txt diff --git "a/ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_bged.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_bged.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_bged.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_bged.txt" diff --git "a/ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_binaried.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_binaried.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_binaried.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_binaried.txt" diff --git "a/ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_greied.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_greied.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_greied.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_greied.txt" diff --git "a/ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_noised.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_noised.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_noised.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_noised.txt" diff --git "a/ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_original.txt" "b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_original.txt" similarity index 100% rename from "ReCapcha/Test/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_original.txt" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2345\346\210\252\345\233\27620150419095100_original.txt" diff --git a/ReCapcha/Test/bin/Debug/experiment/23_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/23_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/23_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/23_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/23_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/23_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/23_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/23_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/23_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/23_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/23_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/25_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/25_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/25_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/25_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/25_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/25_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/25_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/25_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/25_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/25_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/25_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/26_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/26_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/26_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/26_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/26_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/26_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/26_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/27_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/27_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/27_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/27_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/27_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/27_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/27_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/27_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/27_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/27_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/27_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/28_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/28_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/28_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/28_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/28_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/28_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/28_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/28_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/28_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/28_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/28_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/29_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/29_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/29_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/29_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/29_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/29_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/29_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/29_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/29_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/29_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/29_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/2_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/2_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/2_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/2_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/2_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/2_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/2_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/2_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/2_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/2_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/2_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/30_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/30_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/30_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/30_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/30_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/30_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/30_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/30_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/30_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/30_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/30_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/32_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/32_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/32_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/32_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/32_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/32_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/32_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/32_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/32_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/32_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/32_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/33_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/33_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/33_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/33_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/33_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/33_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/33_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/33_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/33_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/34_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/34_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/34_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/34_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/34_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/34_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/34_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/34_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/34_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/34_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/34_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/36_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/36_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/36_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/36_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/36_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/36_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/36_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/36_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/36_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/36_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/36_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/37_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/37_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/37_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/37_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/37_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/37_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/37_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/37_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/37_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/37_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/37_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/38_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/38_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/38_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/38_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/38_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/38_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/38_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/38_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/38_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/38_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/38_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/39_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/39_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/39_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/39_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/39_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/39_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/39_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/39_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/39_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/39_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/39_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/3_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/3_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/3_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/3_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/3_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/3_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/3_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/3_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/3_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/3_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/3_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/40_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/40_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/40_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/40_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/40_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/40_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/40_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/40_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/40_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/40_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/40_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/41_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/41_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/41_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/41_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/41_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/41_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/41_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/41_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/41_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/41_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/41_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/42_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/42_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/42_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/42_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/42_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/42_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/42_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/42_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/42_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/42_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/42_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/43_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/43_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/43_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/43_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/43_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/43_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/43_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/43_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/43_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/43_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/43_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/44_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/44_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/44_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/44_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/44_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/44_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/44_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/44_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/44_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/44_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/44_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/45_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/45_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/45_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/45_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/45_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/45_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/45_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/45_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/45_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/45_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/45_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/46_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/46_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/46_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/46_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/46_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/46_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/46_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/46_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/46_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/46_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/46_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/47_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/47_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/47_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/47_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/47_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/47_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/47_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/48_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/48_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/48_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/48_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/48_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/48_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/48_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/48_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/48_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/49_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/49_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/49_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/49_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/49_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/49_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/49_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/49_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/49_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/49_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/49_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/4_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/4_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/4_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/4_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/4_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/4_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/4_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/4_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/4_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/4_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/4_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/50_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/50_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/50_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/50_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/50_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/50_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/50_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/51_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/51_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/51_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/51_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/51_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/51_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/51_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/53_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/53_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/53_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/53_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/53_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/53_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/53_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/53_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/53_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/53_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/53_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/54_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/54_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/54_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/54_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/54_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/54_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/54_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/54_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/54_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/54_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/54_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/55_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/55_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/55_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/55_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/55_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/55_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/55_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/55_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/55_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/55_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/55_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/56_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/56_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/56_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/56_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/56_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/56_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/56_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/5_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/5_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/5_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/5_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/5_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/5_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/5_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/5_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/5_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/5_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/5_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/64_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/64_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/64_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/64_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/64_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/64_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/64_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/64_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/64_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/64_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/64_original.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_bged.txt new file mode 100644 index 0000000..4b45804 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_bged.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 136,136,136 64,64,64 13,13,13 76,76,76 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 11,11,11 1,1,1 8,8,8 20,20,20 46,46,46 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 14,14,14 100,100,100 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 146,146,146 255,255,255 255,255,255 148,148,148 78,78,78 52,52,52 52,52,52 56,56,56 55,55,55 54,54,54 52,52,52 55,55,55 81,81,81 122,122,122 129,129,129 73,73,73 56,56,56 255,255,255 255,255,255 76,76,76 58,58,58 121,121,121 255,255,255 255,255,255 0,0,0 44,44,44 255,255,255 255,255,255 255,255,255 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 6,6,6 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 136,136,136 112,112,112 42,42,42 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 74,74,74 255,255,255 255,255,255 128,128,128 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 29,29,29 255,255,255 44,44,44 255,255,255 255,255,255 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 68,68,68 255,255,255 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 255,255,255 255,255,255 129,129,129 255,255,255 138,138,138 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 21,21,21 126,126,126 85,85,85 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 27,27,27 114,114,114 59,59,59 139,139,139 34,34,34 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 72,72,72 255,255,255 255,255,255 255,255,255 76,76,76 40,40,40 255,255,255 255,255,255 255,255,255 44,44,44 255,255,255 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 109,109,109 63,63,63 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 92,92,92 0,0,0 74,74,74 255,255,255 122,122,122 255,255,255 255,255,255 138,138,138 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 129,129,129 126,126,126 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 14,14,14 120,120,120 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 255,255,255 255,255,255 42,42,42 46,46,46 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 43,43,43 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 50,50,50 85,85,85 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 145,145,145 0,0,0 8,8,8 113,113,113 255,255,255 255,255,255 255,255,255 111,111,111 1,1,1 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 32,32,32 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 20,20,20 16,16,16 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 44,44,44 74,74,74 28,28,28 130,130,130 118,118,118 100,100,100 80,80,80 74,74,74 80,80,80 90,90,90 34,34,34 255,255,255 255,255,255 255,255,255 146,146,146 0,0,0 66,66,66 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 72,72,72 255,255,255 255,255,255 255,255,255 53,53,53 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 99,99,99 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 66,66,66 132,132,132 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 74,74,74 127,127,127 255,255,255 255,255,255 255,255,255 25,25,25 2,2,2 255,255,255 255,255,255 255,255,255 31,31,31 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 255,255,255 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 90,90,90 54,54,54 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 0,0,0 116,116,116 255,255,255 255,255,255 72,72,72 82,82,82 124,124,124 255,255,255 255,255,255 23,23,23 255,255,255 255,255,255 255,255,255 139,139,139 0,0,0 115,115,115 255,255,255 255,255,255 255,255,255 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 46,46,46 255,255,255 255,255,255 255,255,255 136,136,136 0,0,0 134,134,134 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 10,10,10 255,255,255 255,255,255 255,255,255 142,142,142 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 112,112,112 36,36,36 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 2,2,2 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 118,118,118 255,255,255 255,255,255 255,255,255 20,20,20 41,41,41 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 40,40,40 255,255,255 255,255,255 255,255,255 80,80,80 128,128,128 142,142,142 255,255,255 255,255,255 255,255,255 2,2,2 26,26,26 255,255,255 255,255,255 255,255,255 108,108,108 127,127,127 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 28,28,28 255,255,255 255,255,255 255,255,255 128,128,128 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 0,0,0 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 22,22,22 255,255,255 78,78,78 255,255,255 255,255,255 80,80,80 0,0,0 60,60,60 255,255,255 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 0,0,0 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 131,131,131 255,255,255 255,255,255 255,255,255 14,14,14 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 255,255,255 140,140,140 126,126,126 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 36,36,36 255,255,255 255,255,255 2,2,2 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 8,8,8 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 1,1,1 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 255,255,255 255,255,255 255,255,255 112,112,112 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 31,31,31 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 94,94,94 18,18,18 52,52,52 69,69,69 44,44,44 68,68,68 149,149,149 255,255,255 255,255,255 255,255,255 19,19,19 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 142,142,142 255,255,255 255,255,255 255,255,255 6,6,6 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 151,151,151 31,31,31 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 46,46,46 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 104,104,104 20,20,20 0,0,0 40,40,40 140,140,140 50,50,50 255,255,255 255,255,255 255,255,255 152,152,152 74,74,74 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 39,39,39 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 26,26,26 255,255,255 255,255,255 255,255,255 94,94,94 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 54,54,54 255,255,255 255,255,255 255,255,255 101,101,101 55,55,55 255,255,255 255,255,255 66,66,66 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 44,44,44 255,255,255 255,255,255 255,255,255 96,96,96 130,130,130 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 39,39,39 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 0,0,0 6,6,6 27,27,27 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 44,44,44 150,150,150 255,255,255 255,255,255 255,255,255 2,2,2 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 140,140,140 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 8,8,8 118,118,118 255,255,255 56,56,56 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 35,35,35 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 56,56,56 64,64,64 255,255,255 131,131,131 32,32,32 0,0,0 0,0,0 0,0,0 9,9,9 152,152,152 44,44,44 255,255,255 255,255,255 255,255,255 113,113,113 33,33,33 255,255,255 255,255,255 255,255,255 255,255,255 136,136,136 27,27,27 255,255,255 255,255,255 255,255,255 76,76,76 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 46,46,46 144,144,144 255,255,255 106,106,106 114,114,114 56,56,56 255,255,255 24,24,24 6,6,6 0,0,0 8,8,8 82,82,82 255,255,255 48,48,48 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 69,69,69 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 34,34,34 152,152,152 255,255,255 68,68,68 255,255,255 25,25,25 255,255,255 78,78,78 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 50,50,50 255,255,255 255,255,255 255,255,255 0,0,0 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 124,124,124 120,120,120 88,88,88 117,117,117 111,111,111 255,255,255 255,255,255 255,255,255 28,28,28 0,0,0 0,0,0 0,0,0 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 16,16,16 124,124,124 255,255,255 255,255,255 255,255,255 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 0,0,0 0,0,0 0,0,0 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 134,134,134 0,0,0 0,0,0 0,0,0 42,42,42 0,0,0 255,255,255 255,255,255 255,255,255 22,22,22 83,83,83 20,20,20 129,129,129 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 34,34,34 255,255,255 123,123,123 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 138,138,138 58,58,58 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 0,0,0 54,54,54 60,60,60 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 37,37,37 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 0,0,0 0,0,0 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 116,116,116 50,50,50 119,119,119 52,52,52 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 56,56,56 118,118,118 142,142,142 255,255,255 78,78,78 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 3,3,3 0,0,0 0,0,0 21,21,21 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 23,23,23 128,128,128 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 71,71,71 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 50,50,50 64,64,64 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 36,36,36 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_binaried.txt new file mode 100644 index 0000000..273e667 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_binaried.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_greied.txt new file mode 100644 index 0000000..2ca2594 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_greied.txt @@ -0,0 +1,30 @@ +254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 226,226,226 216,216,216 217,217,217 218,218,218 243,243,243 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 254,254,254 250,250,250 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 +253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 246,246,246 255,255,255 255,255,255 255,255,255 253,253,253 240,240,240 229,229,229 228,228,228 234,234,234 250,250,250 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 240,240,240 250,250,250 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 249,249,249 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 +255,255,255 0,0,0 255,255,255 254,254,254 240,240,240 245,245,245 255,255,255 254,254,254 196,196,196 42,42,42 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 248,248,248 254,254,254 255,255,255 254,254,254 254,254,254 252,252,252 247,247,247 249,249,249 232,232,232 233,233,233 252,252,252 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 214,214,214 136,136,136 64,64,64 13,13,13 76,76,76 0,0,0 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 252,252,252 254,254,254 253,253,253 244,244,244 240,240,240 238,238,238 156,156,156 55,55,55 11,11,11 1,1,1 8,8,8 20,20,20 46,46,46 102,102,102 238,238,238 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 245,245,245 +255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 128,128,128 14,14,14 100,100,100 2,2,2 174,174,174 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 174,174,174 30,30,30 146,146,146 255,255,255 255,255,255 148,148,148 78,78,78 52,52,52 52,52,52 56,56,56 55,55,55 54,54,54 52,52,52 55,55,55 81,81,81 122,122,122 129,129,129 73,73,73 56,56,56 234,234,234 255,255,255 76,76,76 58,58,58 121,121,121 185,185,185 204,204,204 0,0,0 44,44,44 247,247,247 255,255,255 174,174,174 68,68,68 180,180,180 255,255,255 254,254,254 251,251,251 245,245,245 235,235,235 222,222,222 213,213,213 83,83,83 6,6,6 38,38,38 178,178,178 204,204,204 219,219,219 200,200,200 175,175,175 96,96,96 136,136,136 112,112,112 42,42,42 112,112,112 203,203,203 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 72,72,72 74,74,74 226,226,226 255,255,255 128,128,128 18,18,18 228,228,228 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 29,29,29 184,184,184 44,44,44 154,154,154 254,254,254 70,70,70 202,202,202 246,246,246 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 198,198,198 102,102,102 68,68,68 254,254,254 65,65,65 236,236,236 239,239,239 254,254,254 253,253,253 31,31,31 0,0,0 172,172,172 250,250,250 129,129,129 242,242,242 138,138,138 79,79,79 209,209,209 222,222,222 218,218,218 215,215,215 213,213,213 118,118,118 21,21,21 126,126,126 85,85,85 211,211,211 219,219,219 232,232,232 242,242,242 241,241,241 204,204,204 27,27,27 114,114,114 59,59,59 139,139,139 34,34,34 54,54,54 161,161,161 246,246,246 255,255,255 255,255,255 254,254,254 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 116,116,116 255,255,255 255,255,255 255,255,255 252,252,252 60,60,60 72,72,72 255,255,255 255,255,255 242,242,242 76,76,76 40,40,40 228,228,228 254,254,254 234,234,234 44,44,44 202,202,202 73,73,73 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 246,246,246 109,109,109 63,63,63 251,251,251 109,109,109 173,173,173 233,233,233 233,233,233 230,230,230 92,92,92 0,0,0 74,74,74 196,196,196 122,122,122 210,210,210 211,211,211 138,138,138 55,55,55 209,209,209 212,212,212 214,214,214 217,217,217 31,31,31 129,129,129 126,126,126 116,116,116 211,211,211 221,221,221 238,238,238 252,252,252 254,254,254 254,254,254 11,11,11 86,86,86 196,196,196 254,254,254 255,255,255 176,176,176 65,65,65 14,14,14 120,120,120 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 2,2,2 192,192,192 255,255,255 255,255,255 255,255,255 255,255,255 220,220,220 10,10,10 160,160,160 218,218,218 42,42,42 46,46,46 234,234,234 255,255,255 255,255,255 254,254,254 190,190,190 98,98,98 43,43,43 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 234,234,234 255,255,255 255,255,255 255,255,255 246,246,246 50,50,50 85,85,85 243,243,243 154,154,154 106,106,106 218,218,218 215,215,215 212,212,212 145,145,145 0,0,0 8,8,8 113,113,113 177,177,177 195,195,195 205,205,205 111,111,111 1,1,1 200,200,200 215,215,215 221,221,221 0,0,0 0,0,0 189,189,189 101,101,101 155,155,155 235,235,235 245,245,245 253,253,253 255,255,255 254,254,254 254,254,254 54,54,54 96,96,96 251,251,251 247,247,247 254,254,254 254,254,254 255,255,255 216,216,216 32,32,32 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 232,232,232 4,4,4 20,20,20 216,216,216 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 20,20,20 16,16,16 73,73,73 242,242,242 255,255,255 255,255,255 255,255,255 230,230,230 44,44,44 74,74,74 28,28,28 130,130,130 118,118,118 100,100,100 80,80,80 74,74,74 80,80,80 90,90,90 34,34,34 255,255,255 255,255,255 255,255,255 146,146,146 0,0,0 66,66,66 251,251,251 219,219,219 55,55,55 233,233,233 223,223,223 215,215,215 202,202,202 4,4,4 0,0,0 72,72,72 212,212,212 213,213,213 217,217,217 53,53,53 5,5,5 231,231,231 244,244,244 249,249,249 247,247,247 17,17,17 251,251,251 74,74,74 204,204,204 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 120,120,120 222,222,222 251,251,251 246,246,246 254,254,254 254,254,254 255,255,255 252,252,252 24,24,24 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 99,99,99 32,32,32 232,232,232 255,255,255 255,255,255 255,255,255 248,248,248 64,64,64 109,109,109 248,248,248 255,255,255 255,255,255 255,255,255 212,212,212 31,31,31 0,0,0 66,66,66 132,132,132 78,78,78 201,201,201 217,217,217 206,206,206 174,174,174 133,133,133 74,74,74 127,127,127 254,254,254 254,254,254 245,245,245 25,25,25 2,2,2 194,194,194 255,255,255 252,252,252 31,31,31 245,245,245 248,248,248 245,245,245 245,245,245 66,66,66 0,0,0 177,177,177 248,248,248 249,249,249 233,233,233 4,4,4 0,0,0 255,255,255 255,255,255 254,254,254 234,234,234 68,68,68 255,255,255 38,38,38 232,232,232 255,255,255 255,255,255 214,214,214 72,72,72 255,255,255 255,255,255 255,255,255 254,254,254 242,242,242 56,56,56 254,254,254 254,254,254 255,255,255 212,212,212 46,46,46 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 90,90,90 54,54,54 54,54,54 248,248,248 254,254,254 255,255,255 240,240,240 227,227,227 226,226,226 242,242,242 255,255,255 255,255,255 188,188,188 16,16,16 0,0,0 0,0,0 116,116,116 255,255,255 160,160,160 72,72,72 82,82,82 124,124,124 170,170,170 188,188,188 23,23,23 231,231,231 254,254,254 254,254,254 139,139,139 0,0,0 115,115,115 254,254,254 251,251,251 229,229,229 78,78,78 208,208,208 254,254,254 254,254,254 254,254,254 152,152,152 46,46,46 254,254,254 254,254,254 254,254,254 136,136,136 0,0,0 134,134,134 255,255,255 255,255,255 255,255,255 218,218,218 108,108,108 252,252,252 10,10,10 255,255,255 255,255,255 255,255,255 142,142,142 20,20,20 218,218,218 255,255,255 255,255,255 255,255,255 106,106,106 6,6,6 255,255,255 255,255,255 255,255,255 160,160,160 84,84,84 255,255,255 255,255,255 +254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 239,239,239 20,20,20 112,112,112 36,36,36 102,102,102 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 255,255,255 255,255,255 168,168,168 6,6,6 0,0,0 2,2,2 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 118,118,118 255,255,255 255,255,255 242,242,242 20,20,20 41,41,41 250,250,250 0,0,0 254,254,254 250,250,250 0,0,0 166,166,166 254,254,254 254,254,254 255,255,255 242,242,242 204,204,204 254,254,254 254,254,254 232,232,232 12,12,12 0,0,0 210,210,210 255,255,255 255,255,255 255,255,255 196,196,196 142,142,142 218,218,218 40,40,40 255,255,255 255,255,255 255,255,255 80,80,80 128,128,128 142,142,142 255,255,255 255,255,255 206,206,206 2,2,2 26,26,26 255,255,255 254,254,254 253,253,253 108,108,108 127,127,127 254,254,254 254,254,254 +254,254,254 255,255,255 255,255,255 254,254,254 248,248,248 234,234,234 160,160,160 0,0,0 0,0,0 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 12,12,12 0,0,0 0,0,0 156,156,156 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 230,230,230 28,28,28 238,238,238 255,255,255 255,255,255 128,128,128 0,0,0 198,198,198 255,255,255 255,255,255 254,254,254 0,0,0 204,204,204 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 0,0,0 34,34,34 255,255,255 254,254,254 253,253,253 255,255,255 172,172,172 172,172,172 178,178,178 82,82,82 255,255,255 255,255,255 255,255,255 22,22,22 212,212,212 78,78,78 255,255,255 255,255,255 80,80,80 0,0,0 60,60,60 254,254,254 255,255,255 254,254,254 55,55,55 175,175,175 254,254,254 250,250,250 +255,255,255 255,255,255 255,255,255 253,253,253 235,235,235 229,229,229 76,76,76 0,0,0 135,135,135 244,244,244 247,247,247 250,250,250 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 112,112,112 0,0,0 138,138,138 253,253,253 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 131,131,131 254,254,254 255,255,255 234,234,234 14,14,14 87,87,87 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 251,251,251 59,59,59 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 22,22,22 116,116,116 254,254,254 247,247,247 249,249,249 254,254,254 144,144,144 200,200,200 140,140,140 126,126,126 251,251,251 253,253,253 224,224,224 2,2,2 208,208,208 36,36,36 252,252,252 227,227,227 2,2,2 0,0,0 96,96,96 238,238,238 254,254,254 249,249,249 8,8,8 223,223,223 254,254,254 240,240,240 +255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 106,106,106 1,1,1 150,150,150 248,248,248 245,245,245 242,242,242 239,239,239 237,237,237 240,240,240 243,243,243 238,238,238 226,226,226 203,203,203 60,60,60 223,223,223 232,232,232 240,240,240 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 210,210,210 24,24,24 244,244,244 255,255,255 255,255,255 112,112,112 6,6,6 222,222,222 255,255,255 255,255,255 255,255,255 251,251,251 253,253,253 255,255,255 69,69,69 224,224,224 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 0,0,0 255,255,255 210,210,210 31,31,31 189,189,189 220,220,220 223,223,223 240,240,240 117,117,117 223,223,223 98,98,98 170,170,170 253,253,253 254,254,254 176,176,176 56,56,56 94,94,94 18,18,18 52,52,52 69,69,69 44,44,44 68,68,68 149,149,149 242,242,242 254,254,254 205,205,205 19,19,19 254,254,254 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 254,254,254 154,154,154 4,4,4 163,163,163 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 223,223,223 217,217,217 209,209,209 208,208,208 106,106,106 136,136,136 211,211,211 220,220,220 235,235,235 252,252,252 254,254,254 254,254,254 255,255,255 68,68,68 142,142,142 255,255,255 255,255,255 224,224,224 6,6,6 112,112,112 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 248,248,248 253,253,253 128,128,128 141,141,141 240,240,240 240,240,240 248,248,248 244,244,244 77,77,77 230,230,230 255,255,255 255,255,255 151,151,151 31,31,31 207,207,207 224,224,224 241,241,241 90,90,90 244,244,244 46,46,46 208,208,208 255,255,255 255,255,255 128,128,128 156,156,156 104,104,104 20,20,20 0,0,0 40,40,40 140,140,140 50,50,50 226,226,226 255,255,255 254,254,254 152,152,152 74,74,74 255,255,255 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 244,244,244 12,12,12 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 144,144,144 39,39,39 182,182,182 207,207,207 209,209,209 209,209,209 200,200,200 34,34,34 195,195,195 215,215,215 222,222,222 236,236,236 251,251,251 253,253,253 180,180,180 26,26,26 248,248,248 253,253,253 251,251,251 94,94,94 12,12,12 234,234,234 254,254,254 235,235,235 220,220,220 226,226,226 240,240,240 254,254,254 254,254,254 190,190,190 65,65,65 235,235,235 234,234,234 250,250,250 251,251,251 72,72,72 54,54,54 248,248,248 252,252,252 254,254,254 101,101,101 55,55,55 245,245,245 254,254,254 66,66,66 242,242,242 2,2,2 238,238,238 255,255,255 255,255,255 80,80,80 208,208,208 254,254,254 254,254,254 206,206,206 128,128,128 186,186,186 44,44,44 255,255,255 255,255,255 255,255,255 96,96,96 130,130,130 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 248,248,248 4,4,4 39,39,39 236,236,236 254,254,254 254,254,254 254,254,254 176,176,176 54,54,54 0,0,0 6,6,6 27,27,27 179,179,179 216,216,216 213,213,213 213,213,213 121,121,121 96,96,96 212,212,212 213,213,213 215,215,215 221,221,221 235,235,235 44,44,44 150,150,150 254,254,254 253,253,253 210,210,210 2,2,2 122,122,122 255,255,255 255,255,255 250,250,250 238,238,238 234,234,234 225,225,225 229,229,229 241,241,241 246,246,246 12,12,12 245,245,245 255,255,255 253,253,253 254,254,254 140,140,140 0,0,0 96,96,96 255,255,255 255,255,255 242,242,242 8,8,8 118,118,118 255,255,255 56,56,56 179,179,179 0,0,0 238,238,238 255,255,255 254,254,254 35,35,35 250,250,250 255,255,255 255,255,255 255,255,255 82,82,82 172,172,172 108,108,108 255,255,255 255,255,255 255,255,255 44,44,44 188,188,188 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 251,251,251 254,254,254 78,78,78 56,56,56 64,64,64 216,216,216 131,131,131 32,32,32 0,0,0 0,0,0 0,0,0 9,9,9 152,152,152 44,44,44 178,178,178 237,237,237 237,237,237 113,113,113 33,33,33 211,211,211 210,210,210 209,209,209 208,208,208 136,136,136 27,27,27 229,229,229 245,245,245 253,253,253 76,76,76 14,14,14 237,237,237 255,255,255 255,255,255 255,255,255 254,254,254 251,251,251 227,227,227 222,222,222 234,234,234 252,252,252 57,57,57 189,189,189 243,243,243 254,254,254 254,254,254 216,216,216 0,0,0 46,46,46 144,144,144 254,254,254 106,106,106 114,114,114 56,56,56 255,255,255 24,24,24 6,6,6 0,0,0 8,8,8 82,82,82 162,162,162 48,48,48 248,248,248 254,254,254 255,255,255 254,254,254 68,68,68 110,110,110 178,178,178 255,255,255 255,255,255 242,242,242 8,8,8 244,244,244 252,252,252 252,252,252 254,254,254 +254,254,254 238,238,238 226,226,226 235,235,235 181,181,181 69,69,69 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 34,34,34 152,152,152 218,218,218 68,68,68 208,208,208 25,25,25 172,172,172 78,78,78 0,0,0 8,8,8 218,218,218 211,211,211 209,209,209 210,210,210 37,37,37 50,50,50 194,194,194 213,213,213 172,172,172 0,0,0 120,120,120 250,250,250 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 252,252,252 251,251,251 255,255,255 255,255,255 120,120,120 144,144,144 252,252,252 255,255,255 254,254,254 255,255,255 16,16,16 124,124,124 120,120,120 88,88,88 117,117,117 111,111,111 197,197,197 255,255,255 178,178,178 28,28,28 0,0,0 0,0,0 0,0,0 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 216,216,216 45,45,45 16,16,16 124,124,124 220,220,220 255,255,255 188,188,188 62,62,62 244,244,244 227,227,227 231,231,231 249,249,249 +253,253,253 250,250,250 240,240,240 221,221,221 219,219,219 111,111,111 0,0,0 0,0,0 0,0,0 32,32,32 156,156,156 252,252,252 255,255,255 255,255,255 210,210,210 72,72,72 134,134,134 0,0,0 0,0,0 0,0,0 42,42,42 0,0,0 232,232,232 215,215,215 210,210,210 22,22,22 83,83,83 20,20,20 129,129,129 0,0,0 12,12,12 0,0,0 226,226,226 236,236,236 245,245,245 251,251,251 253,253,253 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 186,186,186 86,86,86 255,255,255 255,255,255 234,234,234 166,166,166 10,10,10 34,34,34 255,255,255 123,123,123 59,59,59 198,198,198 253,253,253 255,255,255 255,255,255 251,251,251 212,212,212 138,138,138 58,58,58 101,101,101 252,252,252 255,255,255 254,254,254 254,254,254 200,200,200 12,12,12 0,0,0 0,0,0 0,0,0 54,54,54 60,60,60 142,142,142 251,251,251 243,243,243 226,226,226 219,219,219 +255,255,255 254,254,254 252,252,252 230,230,230 223,223,223 237,237,237 106,106,106 37,37,37 154,154,154 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 182,182,182 55,55,55 0,0,0 0,0,0 59,59,59 231,231,231 255,255,255 255,255,255 245,245,245 238,238,238 116,116,116 50,50,50 119,119,119 52,52,52 0,0,0 96,96,96 211,211,211 215,215,215 218,218,218 221,221,221 234,234,234 237,237,237 228,228,228 243,243,243 255,255,255 254,254,254 251,251,251 243,243,243 46,46,46 56,56,56 118,118,118 142,142,142 154,154,154 78,78,78 0,0,0 236,236,236 253,253,253 254,254,254 255,255,255 254,254,254 253,253,253 251,251,251 243,243,243 237,237,237 230,230,230 217,217,217 220,220,220 241,241,241 251,251,251 249,249,249 241,241,241 239,239,239 215,215,215 93,93,93 3,3,3 0,0,0 0,0,0 21,21,21 236,236,236 254,254,254 253,253,253 236,236,236 221,221,221 +254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 165,165,165 23,23,23 128,128,128 248,248,248 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 231,231,231 118,118,118 71,71,71 10,10,10 204,204,204 228,228,228 230,230,230 235,235,235 226,226,226 234,234,234 249,249,249 246,246,246 250,250,250 254,254,254 249,249,249 251,251,251 254,254,254 238,238,238 86,86,86 50,50,50 64,64,64 108,108,108 164,164,164 226,226,226 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 248,248,248 230,230,230 221,221,221 213,213,213 209,209,209 209,209,209 210,210,210 217,217,217 227,227,227 234,234,234 243,243,243 249,249,249 253,253,253 254,254,254 215,215,215 90,90,90 36,36,36 210,210,210 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 249,249,249 251,251,251 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 241,241,241 252,252,252 242,242,242 206,206,206 253,253,253 251,251,251 252,252,252 253,253,253 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 251,251,251 240,240,240 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 250,250,250 236,236,236 221,221,221 212,212,212 209,209,209 209,209,209 209,209,209 209,209,209 210,210,210 213,213,213 227,227,227 247,247,247 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 244,244,244 236,236,236 249,249,249 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 254,254,254 255,255,255 0,0,0 252,252,252 253,253,253 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 245,245,245 232,232,232 225,225,225 219,219,219 214,214,214 213,213,213 216,216,216 213,213,213 209,209,209 210,210,210 212,212,212 222,222,222 239,239,239 249,249,249 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 252,252,252 233,233,233 204,204,204 197,197,197 200,200,200 210,210,210 211,211,211 213,213,213 217,217,217 223,223,223 228,228,228 227,227,227 235,235,235 247,247,247 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 254,254,254 255,255,255 253,253,253 249,249,249 241,241,241 227,227,227 217,217,217 211,211,211 207,207,207 206,206,206 208,208,208 210,210,210 210,210,210 218,218,218 231,231,231 247,247,247 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 230,230,230 228,228,228 241,241,241 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 253,253,253 249,249,249 251,251,251 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 251,251,251 240,240,240 232,232,232 230,230,230 223,223,223 215,215,215 208,208,208 208,208,208 209,209,209 209,209,209 210,210,210 209,209,209 214,214,214 229,229,229 246,246,246 253,253,253 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 248,248,248 233,233,233 233,233,233 240,240,240 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 231,231,231 236,236,236 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 247,247,247 223,223,223 207,207,207 211,211,211 215,215,215 211,211,211 209,209,209 210,210,210 210,210,210 212,212,212 216,216,216 220,220,220 230,230,230 246,246,246 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_noised.txt new file mode 100644 index 0000000..c23cd58 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_noised.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 136,136,136 64,64,64 13,13,13 76,76,76 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 11,11,11 1,1,1 8,8,8 20,20,20 46,46,46 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 14,14,14 100,100,100 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 146,146,146 255,255,255 255,255,255 148,148,148 78,78,78 52,52,52 52,52,52 56,56,56 55,55,55 54,54,54 52,52,52 55,55,55 81,81,81 122,122,122 129,129,129 73,73,73 56,56,56 255,255,255 255,255,255 76,76,76 58,58,58 121,121,121 255,255,255 255,255,255 0,0,0 44,44,44 255,255,255 255,255,255 255,255,255 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 6,6,6 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 136,136,136 112,112,112 42,42,42 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 74,74,74 255,255,255 255,255,255 128,128,128 18,18,18 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 29,29,29 255,255,255 44,44,44 255,255,255 255,255,255 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 68,68,68 255,255,255 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 255,255,255 255,255,255 129,129,129 255,255,255 138,138,138 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 21,21,21 126,126,126 85,85,85 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 27,27,27 114,114,114 59,59,59 139,139,139 34,34,34 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 72,72,72 255,255,255 255,255,255 255,255,255 76,76,76 40,40,40 255,255,255 255,255,255 255,255,255 44,44,44 255,255,255 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 109,109,109 63,63,63 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 92,92,92 0,0,0 74,74,74 255,255,255 122,122,122 255,255,255 255,255,255 138,138,138 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 129,129,129 126,126,126 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 14,14,14 120,120,120 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 255,255,255 255,255,255 42,42,42 46,46,46 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 43,43,43 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 50,50,50 85,85,85 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 145,145,145 0,0,0 8,8,8 113,113,113 255,255,255 255,255,255 255,255,255 111,111,111 1,1,1 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 32,32,32 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 20,20,20 16,16,16 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 44,44,44 74,74,74 28,28,28 130,130,130 118,118,118 100,100,100 80,80,80 74,74,74 80,80,80 90,90,90 34,34,34 255,255,255 255,255,255 255,255,255 146,146,146 0,0,0 66,66,66 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 72,72,72 255,255,255 255,255,255 255,255,255 53,53,53 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 17,17,17 255,255,255 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 99,99,99 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 0,0,0 66,66,66 132,132,132 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 74,74,74 127,127,127 255,255,255 255,255,255 255,255,255 25,25,25 2,2,2 255,255,255 255,255,255 255,255,255 31,31,31 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 255,255,255 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 90,90,90 54,54,54 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 0,0,0 0,0,0 116,116,116 255,255,255 255,255,255 72,72,72 82,82,82 124,124,124 255,255,255 255,255,255 23,23,23 255,255,255 255,255,255 255,255,255 139,139,139 0,0,0 115,115,115 255,255,255 255,255,255 255,255,255 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 46,46,46 255,255,255 255,255,255 255,255,255 136,136,136 0,0,0 134,134,134 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 10,10,10 255,255,255 255,255,255 255,255,255 142,142,142 20,20,20 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 20,20,20 112,112,112 36,36,36 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 6,6,6 0,0,0 2,2,2 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 118,118,118 255,255,255 255,255,255 255,255,255 20,20,20 41,41,41 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 40,40,40 255,255,255 255,255,255 255,255,255 80,80,80 128,128,128 142,142,142 255,255,255 255,255,255 255,255,255 2,2,2 26,26,26 255,255,255 255,255,255 255,255,255 108,108,108 127,127,127 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 28,28,28 255,255,255 255,255,255 255,255,255 128,128,128 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 0,0,0 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 22,22,22 255,255,255 78,78,78 255,255,255 255,255,255 80,80,80 0,0,0 60,60,60 255,255,255 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 0,0,0 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 131,131,131 255,255,255 255,255,255 255,255,255 14,14,14 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 22,22,22 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 255,255,255 140,140,140 126,126,126 255,255,255 255,255,255 255,255,255 2,2,2 255,255,255 36,36,36 255,255,255 255,255,255 2,2,2 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 8,8,8 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 1,1,1 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 24,24,24 255,255,255 255,255,255 255,255,255 112,112,112 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 31,31,31 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 94,94,94 18,18,18 52,52,52 69,69,69 44,44,44 68,68,68 149,149,149 255,255,255 255,255,255 255,255,255 19,19,19 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 142,142,142 255,255,255 255,255,255 255,255,255 6,6,6 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 151,151,151 31,31,31 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 46,46,46 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 104,104,104 20,20,20 0,0,0 40,40,40 140,140,140 50,50,50 255,255,255 255,255,255 255,255,255 152,152,152 74,74,74 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 39,39,39 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 26,26,26 255,255,255 255,255,255 255,255,255 94,94,94 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 54,54,54 255,255,255 255,255,255 255,255,255 101,101,101 55,55,55 255,255,255 255,255,255 66,66,66 255,255,255 2,2,2 255,255,255 255,255,255 255,255,255 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 44,44,44 255,255,255 255,255,255 255,255,255 96,96,96 130,130,130 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 39,39,39 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 0,0,0 6,6,6 27,27,27 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 44,44,44 150,150,150 255,255,255 255,255,255 255,255,255 2,2,2 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 140,140,140 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 8,8,8 118,118,118 255,255,255 56,56,56 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 35,35,35 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 56,56,56 64,64,64 255,255,255 131,131,131 32,32,32 0,0,0 0,0,0 0,0,0 9,9,9 152,152,152 44,44,44 255,255,255 255,255,255 255,255,255 113,113,113 33,33,33 255,255,255 255,255,255 255,255,255 255,255,255 136,136,136 27,27,27 255,255,255 255,255,255 255,255,255 76,76,76 14,14,14 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 46,46,46 144,144,144 255,255,255 106,106,106 114,114,114 56,56,56 255,255,255 24,24,24 6,6,6 0,0,0 8,8,8 82,82,82 255,255,255 48,48,48 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 69,69,69 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 34,34,34 152,152,152 255,255,255 68,68,68 255,255,255 25,25,25 255,255,255 78,78,78 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 50,50,50 255,255,255 255,255,255 255,255,255 0,0,0 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 16,16,16 124,124,124 120,120,120 88,88,88 117,117,117 111,111,111 255,255,255 255,255,255 255,255,255 28,28,28 0,0,0 0,0,0 0,0,0 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 16,16,16 124,124,124 255,255,255 255,255,255 255,255,255 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 0,0,0 0,0,0 0,0,0 32,32,32 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 134,134,134 0,0,0 0,0,0 0,0,0 42,42,42 0,0,0 255,255,255 255,255,255 255,255,255 22,22,22 83,83,83 20,20,20 129,129,129 0,0,0 12,12,12 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 10,10,10 34,34,34 255,255,255 123,123,123 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 138,138,138 58,58,58 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 12,12,12 0,0,0 0,0,0 0,0,0 54,54,54 60,60,60 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 37,37,37 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 0,0,0 0,0,0 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 116,116,116 50,50,50 119,119,119 52,52,52 0,0,0 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 56,56,56 118,118,118 142,142,142 255,255,255 78,78,78 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 3,3,3 0,0,0 0,0,0 21,21,21 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 23,23,23 128,128,128 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 71,71,71 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 50,50,50 64,64,64 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 36,36,36 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_original.txt new file mode 100644 index 0000000..a545c0e --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/67_original.txt @@ -0,0 +1,30 @@ +254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,254,254 248,215,216 253,197,200 253,200,199 251,202,203 252,237,241 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 254,255,255 254,248,249 254,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 +253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,243,244 249,244,245 255,255,255 255,255,255 255,255,255 253,254,254 252,234,235 252,217,220 249,219,218 252,226,226 254,247,249 254,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,255,255 254,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,252,252 250,235,237 252,249,249 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,251,251 252,248,249 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,250,250 254,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 254,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,252,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 255,255,255 253,252,253 253,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 253,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,254 +255,255,255 0,0,0 255,255,255 255,254,254 247,236,238 250,243,244 255,255,255 253,255,255 196,196,196 42,42,42 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,254 251,247,248 255,254,255 255,255,255 254,255,255 254,255,255 253,252,252 253,244,246 254,247,248 249,223,226 251,223,226 254,251,251 254,255,255 252,252,252 255,255,255 255,255,255 255,255,255 214,214,214 136,136,136 65,64,65 13,13,13 76,76,76 0,0,0 253,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 253,253,253 252,253,253 253,255,255 254,253,253 251,240,241 252,234,234 254,231,231 168,150,150 60,53,54 11,11,11 2,1,1 8,8,8 20,20,20 46,46,46 102,102,102 238,238,238 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 253,255,255 254,255,255 251,241,243 +255,255,255 255,255,255 255,255,255 255,255,255 254,254,255 254,254,255 255,255,255 128,128,128 14,14,14 100,100,100 2,2,2 174,174,174 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 174,174,174 30,30,30 146,146,146 255,255,255 255,255,255 148,148,148 78,78,78 52,52,52 52,52,52 56,56,56 55,56,56 55,54,54 55,51,51 56,55,55 83,81,81 125,121,121 129,130,129 73,74,73 56,56,56 234,234,234 255,255,255 76,76,76 58,58,58 122,121,121 187,185,185 204,204,204 0,0,0 44,44,44 247,248,248 255,255,255 174,174,174 68,68,68 180,180,180 255,255,255 254,255,255 254,250,251 253,241,243 252,226,228 253,205,208 254,191,195 100,75,75 8,5,5 46,34,34 206,164,165 221,196,197 224,217,218 201,200,201 176,175,175 98,96,96 138,136,136 112,112,112 42,42,42 112,112,112 203,204,204 255,255,255 255,255,255 254,255,255 253,255,255 253,255,255 253,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 72,72,72 74,74,74 226,226,226 255,255,255 128,128,128 18,18,18 228,228,228 255,255,255 255,255,255 255,255,255 255,255,255 120,119,119 29,29,29 184,184,184 44,44,44 154,154,154 254,255,255 70,70,70 202,202,202 246,246,246 254,254,254 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 198,198,198 102,102,102 68,68,68 254,255,255 65,66,66 240,234,235 247,235,237 255,254,254 253,254,254 31,31,31 0,0,0 174,171,171 253,249,250 132,128,129 251,239,238 147,133,134 88,75,76 235,195,198 253,205,210 251,200,205 252,194,201 253,192,196 143,106,107 25,19,19 154,113,112 104,76,76 253,189,191 250,203,204 251,223,224 252,237,238 248,237,239 211,201,202 29,27,27 120,112,112 62,58,58 141,138,138 34,34,34 54,54,54 161,162,162 246,246,246 255,255,255 255,255,255 254,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 46,46,46 116,116,116 255,255,255 255,255,255 255,255,255 252,252,252 60,60,60 72,72,72 255,255,255 255,255,255 242,242,242 76,76,76 40,40,40 228,228,228 254,255,255 234,234,234 44,44,44 203,202,203 74,73,73 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 246,246,246 109,110,110 64,63,64 254,249,250 113,108,107 183,168,168 253,223,225 253,222,224 254,216,220 104,86,88 0,0,0 85,68,69 231,178,181 147,109,111 253,189,190 251,191,191 166,124,124 68,49,50 254,187,188 254,190,192 253,191,198 252,198,203 37,29,29 156,114,117 154,112,113 142,102,105 252,188,193 252,203,208 254,230,232 254,252,252 253,255,255 253,255,255 11,12,12 86,86,86 197,197,196 254,254,254 255,255,255 176,176,176 65,66,66 14,14,14 120,120,120 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 2,2,2 192,192,192 255,255,255 255,255,255 255,255,255 255,255,255 220,220,220 10,10,10 160,160,160 218,218,218 42,42,42 46,46,46 234,234,234 255,255,255 255,255,255 254,255,255 190,190,190 98,98,98 44,43,43 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 234,234,234 255,255,255 255,255,255 255,255,255 246,246,246 50,50,50 85,85,86 252,238,240 168,146,149 121,98,101 253,199,204 253,194,198 254,187,195 176,128,132 0,0,0 10,7,7 143,98,100 231,150,152 253,165,168 254,179,182 135,100,100 1,1,1 238,180,183 253,195,199 254,203,208 0,0,0 0,0,0 213,176,180 115,94,95 173,145,147 253,226,227 253,241,242 255,252,253 255,255,255 253,255,255 254,255,255 54,54,54 96,96,96 253,250,251 251,245,246 255,254,255 254,255,255 255,255,255 216,216,216 32,32,32 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 232,232,232 4,4,4 20,20,20 216,216,216 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 20,20,20 16,16,16 73,74,74 242,242,242 255,255,255 255,255,255 255,255,255 230,230,230 44,44,44 74,74,74 28,28,28 130,130,130 118,118,118 100,100,100 80,80,80 74,74,74 80,80,80 90,90,90 34,34,34 255,255,255 255,255,255 255,255,255 146,146,146 0,0,0 66,66,66 253,251,251 225,216,217 57,54,54 253,223,224 253,208,209 251,196,198 241,181,184 6,4,4 0,0,0 85,66,66 252,191,195 252,193,196 253,199,200 60,49,50 6,5,5 244,224,227 253,239,242 254,246,247 248,247,247 18,17,18 254,249,250 75,74,74 204,204,204 253,255,254 253,255,255 254,255,255 254,255,255 253,255,255 254,255,255 120,120,120 222,222,222 254,250,251 251,244,245 255,254,255 254,255,255 255,255,255 252,252,252 24,24,24 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 30,30,30 99,99,99 32,32,32 232,232,232 255,255,255 255,255,255 255,255,255 253,245,246 69,62,63 116,106,107 251,246,247 255,255,255 255,255,255 255,255,255 212,212,212 31,31,31 0,0,0 66,66,66 132,132,132 78,78,78 201,201,201 217,217,217 206,206,206 174,174,174 133,134,134 75,74,74 128,127,127 254,255,255 253,255,255 246,244,245 26,25,25 2,2,2 194,194,194 255,255,255 254,251,252 33,31,31 251,242,242 254,246,244 254,240,242 253,241,243 68,65,65 0,0,0 182,174,175 253,245,247 252,247,249 235,232,232 4,4,4 0,0,0 255,255,255 255,255,255 254,255,255 234,234,234 68,68,68 255,255,255 38,38,38 232,232,232 255,255,255 255,255,255 214,214,214 72,72,72 255,255,255 255,255,255 255,255,255 254,255,255 242,242,242 56,56,56 254,255,255 254,255,255 255,255,255 212,212,212 46,46,46 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 90,90,90 54,54,54 54,54,54 248,248,248 254,254,254 255,255,255 250,236,236 251,213,218 250,212,217 251,237,238 255,255,255 255,255,255 188,188,188 16,16,16 0,0,0 0,0,0 116,116,116 255,255,255 160,160,160 72,72,72 82,82,82 124,124,124 170,170,170 192,187,187 25,23,23 236,229,230 254,255,255 254,255,255 140,138,139 0,0,0 116,115,115 254,255,255 254,250,250 251,218,220 85,74,75 212,207,207 253,255,255 254,255,255 254,255,255 152,152,152 46,46,46 254,255,255 254,255,255 254,255,255 136,136,136 0,0,0 134,134,134 255,255,255 255,255,255 255,255,255 218,218,218 108,108,108 252,252,252 10,10,10 255,255,255 255,255,255 255,255,255 142,142,142 20,20,20 218,218,218 255,255,255 255,255,255 255,255,255 106,106,106 6,6,6 255,255,255 255,255,255 255,255,255 160,160,160 84,84,84 255,255,255 255,255,255 +254,254,254 255,255,255 255,255,255 255,255,255 253,255,255 239,240,240 20,20,20 112,112,112 36,36,36 102,102,102 255,255,255 255,255,255 255,255,255 254,253,253 254,252,252 255,255,255 255,255,255 168,168,168 6,6,6 0,0,0 2,2,2 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 118,118,118 255,255,255 255,255,255 242,242,242 20,20,20 41,41,41 250,250,250 0,0,0 255,254,254 254,249,249 0,0,0 166,166,166 254,254,254 254,255,255 255,255,255 242,242,242 204,204,204 254,254,254 254,255,255 232,232,232 12,12,12 0,0,0 210,210,210 255,255,255 255,255,255 255,255,255 196,196,196 142,142,142 218,218,218 40,40,40 255,255,255 255,255,255 255,255,255 80,80,80 128,128,128 142,142,142 255,255,255 255,255,255 206,206,206 2,2,2 26,26,26 255,255,255 254,254,254 253,253,253 108,108,108 127,128,128 253,255,255 254,255,255 +254,254,254 255,255,255 255,255,255 255,255,254 253,245,246 249,225,228 166,157,158 0,0,0 0,0,0 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 12,12,12 0,0,0 0,0,0 156,156,156 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 230,230,230 28,28,28 238,238,238 255,255,255 255,255,255 128,128,128 0,0,0 198,198,198 255,255,255 255,255,255 254,254,254 0,0,0 204,204,204 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 0,0,0 34,34,34 255,255,255 254,254,254 254,253,253 255,255,255 172,172,172 172,172,172 178,178,178 82,82,82 255,255,255 255,255,255 255,255,255 22,22,22 212,212,212 78,78,78 255,255,255 255,255,255 80,80,80 0,0,0 60,60,60 254,255,255 255,255,255 254,254,254 55,56,56 175,176,176 255,254,255 254,247,249 +255,255,255 255,255,255 255,255,255 255,253,253 251,226,228 248,219,221 78,75,75 0,0,0 139,134,134 250,241,241 251,245,245 252,249,250 253,253,253 254,255,255 253,255,255 252,255,255 255,253,254 114,111,111 0,0,0 141,138,137 254,254,252 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 131,131,131 254,254,254 255,255,255 234,234,234 14,14,14 87,87,87 254,254,254 254,254,254 254,254,254 255,255,255 254,255,255 252,251,252 60,59,59 253,252,253 253,253,253 254,255,254 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 22,22,22 116,116,116 255,254,254 252,245,246 252,248,249 254,255,255 144,144,144 200,200,200 140,140,140 126,126,126 251,251,251 254,253,253 224,224,224 2,2,2 208,208,208 36,36,36 252,252,252 227,228,228 2,2,2 0,0,0 103,92,94 250,231,235 255,254,254 249,250,250 8,8,8 221,224,224 254,255,255 251,233,237 +255,255,255 255,255,255 255,255,255 253,254,254 253,255,255 106,106,106 1,2,2 151,150,150 252,246,246 252,242,241 251,237,238 250,234,235 249,232,232 249,236,236 252,240,239 250,232,232 252,212,215 235,186,190 71,55,56 253,208,208 253,221,222 254,233,234 254,245,245 254,254,254 255,255,255 255,255,255 255,255,255 210,210,210 24,24,24 244,244,244 255,255,255 255,255,255 112,112,112 6,6,6 222,222,222 255,255,255 255,255,255 255,255,255 251,251,251 251,254,254 255,255,255 70,69,70 224,224,224 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 0,0,0 255,255,255 210,210,210 33,31,31 213,176,179 254,201,206 250,207,212 252,233,237 117,118,118 221,224,224 98,98,98 170,170,170 254,253,253 255,254,254 176,176,176 56,56,56 94,94,94 18,18,18 52,52,52 69,70,70 44,44,44 69,68,68 157,144,146 251,236,239 254,254,255 205,206,206 19,20,20 254,255,255 254,254,254 253,255,255 +255,255,255 255,255,255 255,255,255 254,254,254 154,154,154 4,4,4 163,164,164 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,233,234 252,209,209 254,198,199 253,187,189 253,185,187 130,95,95 166,121,121 255,188,192 253,202,205 251,227,227 254,252,252 254,255,255 254,255,255 255,255,255 68,68,68 142,142,142 255,255,255 255,255,255 224,224,224 6,6,6 112,112,112 255,255,255 254,254,254 254,254,254 254,254,254 254,253,253 251,247,248 254,252,253 128,128,128 140,142,142 252,234,236 252,234,235 252,247,246 251,241,241 78,77,77 230,230,230 255,255,255 255,255,255 158,148,148 35,29,29 236,190,195 250,209,213 252,234,237 90,90,90 242,246,246 46,46,46 208,208,208 255,255,255 255,255,255 128,128,128 156,156,156 104,104,104 20,20,20 0,0,0 40,40,40 140,140,140 50,50,50 226,226,226 255,255,255 254,255,255 152,152,152 74,74,74 255,255,255 255,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 244,244,244 12,12,12 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,249,250 153,140,141 45,37,37 218,163,165 253,185,185 255,187,186 254,186,187 242,179,181 41,31,31 236,172,177 255,193,199 252,206,210 253,226,230 255,249,251 252,254,254 180,181,181 26,26,26 248,248,248 254,253,253 251,251,251 94,94,94 12,12,12 234,234,234 254,255,255 249,228,229 248,205,209 251,213,216 251,235,234 254,255,255 254,254,254 190,190,190 66,65,65 252,226,229 251,225,227 252,250,248 252,252,250 72,72,72 54,54,54 248,248,248 252,252,252 254,254,254 102,101,101 56,55,55 246,245,245 254,255,255 66,66,66 242,242,242 2,2,2 238,238,238 255,255,255 255,255,255 80,80,80 208,208,208 254,254,254 254,254,254 206,206,206 128,128,128 186,186,186 44,44,44 255,255,255 255,255,255 255,255,255 96,96,96 130,130,130 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 248,248,248 4,4,4 40,39,39 238,235,236 255,254,255 254,254,254 254,254,255 176,176,176 59,52,53 0,0,0 8,6,6 33,24,25 214,160,163 255,195,200 254,190,196 251,192,197 141,110,113 112,87,89 253,190,195 254,191,194 253,195,199 252,203,208 253,225,229 45,44,44 150,150,150 254,255,255 253,253,253 211,209,210 2,2,2 122,122,122 255,255,255 255,255,255 254,248,249 251,231,234 253,224,227 251,212,214 251,217,219 252,236,236 246,246,246 12,12,12 245,246,246 255,255,255 250,255,255 254,255,255 140,140,140 0,0,0 96,96,96 255,255,255 255,255,255 242,242,242 8,8,8 118,118,118 255,255,255 56,56,56 179,179,179 0,0,0 238,238,238 255,255,255 254,254,254 35,35,35 250,250,250 255,255,255 255,255,255 255,255,255 82,82,82 172,172,172 108,108,108 255,255,255 255,255,255 255,255,255 44,44,44 188,188,188 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 253,250,251 255,254,253 78,78,78 57,55,56 66,64,64 216,216,216 131,132,132 32,32,32 0,0,0 0,0,0 0,0,0 9,9,9 160,149,149 45,44,43 187,173,174 253,228,231 253,227,231 128,105,107 39,30,31 253,189,192 254,188,189 253,188,188 253,186,187 162,123,124 31,25,25 248,220,221 254,239,242 253,253,253 76,76,76 14,14,14 237,238,238 255,255,255 255,255,255 255,255,255 252,255,255 253,251,251 250,215,217 251,206,209 249,226,227 253,251,252 57,57,57 194,186,187 251,239,241 254,255,255 254,255,255 216,216,216 0,0,0 46,46,46 144,144,144 254,254,254 106,106,106 114,114,114 56,56,56 255,255,255 24,24,24 6,6,6 0,0,0 8,8,8 82,82,82 162,162,162 48,48,48 251,247,248 255,254,254 255,255,255 254,255,255 68,68,68 110,110,110 178,178,178 255,255,255 255,255,255 242,242,242 8,8,8 244,244,244 254,251,251 254,252,252 254,255,255 +254,255,255 250,231,234 252,211,216 252,227,228 182,181,181 69,69,69 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 34,34,34 152,152,152 218,218,218 68,68,68 208,208,208 25,26,26 172,172,172 78,78,78 0,0,0 9,8,8 252,200,204 253,190,191 254,187,188 254,188,188 45,33,33 61,45,45 235,172,175 253,191,196 194,160,164 0,0,0 125,118,119 254,248,249 254,255,255 254,255,255 253,255,255 254,255,255 255,255,255 254,252,252 253,251,251 255,255,255 255,255,255 120,120,120 146,144,144 254,251,251 255,255,255 254,254,254 255,255,255 16,16,16 124,124,124 120,120,120 88,88,88 119,117,117 114,109,110 198,197,197 255,255,255 178,178,178 28,28,28 0,0,0 0,0,0 0,0,0 0,0,0 138,138,138 255,255,255 255,255,255 255,255,255 216,216,216 45,45,45 16,16,16 124,124,124 220,220,220 255,255,255 188,188,188 62,62,62 252,239,241 251,212,219 250,220,225 252,247,248 +251,255,255 255,248,249 252,234,235 250,205,208 251,203,203 120,107,106 0,0,0 0,0,0 0,0,0 32,32,32 156,156,156 252,252,252 255,255,255 255,255,255 210,210,210 72,72,72 134,134,134 0,0,0 0,0,0 0,0,0 42,42,42 0,0,0 253,222,223 251,197,198 252,189,189 28,20,20 102,73,75 25,18,18 158,115,116 0,0,0 15,11,12 0,0,0 253,211,214 252,229,229 254,242,240 254,250,249 254,252,253 255,252,252 255,255,255 255,255,255 255,255,255 255,255,255 186,186,186 86,86,86 255,255,255 255,255,255 234,234,234 166,166,166 10,10,10 34,34,34 255,255,255 123,124,124 59,59,59 202,195,197 253,253,254 255,255,255 255,255,255 251,252,252 212,212,212 139,138,138 59,58,59 103,101,101 252,252,252 255,255,255 254,255,255 253,255,254 200,200,200 12,12,12 0,0,0 0,0,0 0,0,0 54,54,54 60,60,60 142,142,142 252,250,251 249,239,241 253,211,214 253,202,203 +255,255,255 254,255,255 252,253,253 251,217,222 252,210,209 251,231,229 107,106,106 37,37,38 154,154,154 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 182,182,182 55,56,56 0,0,0 0,0,0 59,60,60 231,232,232 255,255,255 255,255,255 251,242,243 252,231,231 128,110,111 58,46,47 141,108,110 63,47,48 0,0,0 117,86,87 252,187,194 253,194,200 251,201,203 251,207,207 253,224,226 252,229,232 250,216,220 252,238,240 255,255,255 254,255,255 252,251,251 246,242,243 46,46,46 56,56,56 118,118,118 142,142,142 154,154,154 78,78,78 0,0,0 236,236,236 253,254,254 254,255,255 255,255,255 254,255,255 254,253,254 253,250,251 251,240,240 254,229,230 253,217,220 251,197,203 251,202,207 251,236,237 252,251,251 250,249,248 248,238,239 249,233,235 225,210,211 97,92,92 3,3,3 0,0,0 0,0,0 21,22,22 236,236,236 254,254,255 251,255,255 253,228,229 250,208,207 +254,254,255 255,254,255 251,255,255 254,255,255 254,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 165,166,166 23,23,23 133,125,127 251,247,248 253,255,255 254,255,255 253,255,255 253,255,255 253,255,255 254,255,255 232,231,232 121,117,118 75,69,70 11,10,10 229,189,194 253,213,220 251,218,223 254,225,228 251,212,215 251,225,227 254,247,247 252,243,244 254,249,249 254,254,254 252,247,248 253,251,251 254,254,254 238,238,238 86,86,86 50,50,50 64,64,64 108,108,108 164,164,164 226,226,226 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 254,244,246 251,219,222 254,203,206 254,192,194 252,188,188 254,186,187 255,188,189 251,199,201 251,213,218 249,226,228 249,240,240 251,248,248 253,253,253 253,255,255 214,216,216 90,90,90 36,36,36 210,210,210 254,255,255 253,255,255 253,255,255 254,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 251,248,248 254,250,251 255,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,245,247 250,236,239 252,252,252 242,242,242 206,206,206 254,252,253 253,251,251 253,252,253 254,253,254 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 253,250,251 249,235,238 253,250,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 253,255,255 254,255,255 255,255,255 253,249,249 252,227,230 254,203,208 255,189,192 254,186,187 253,187,187 253,187,187 254,187,188 254,186,190 253,190,196 253,213,215 255,243,244 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 251,239,242 249,228,232 252,247,249 255,255,255 255,255,255 253,255,255 254,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,255,255 252,255,255 255,255,255 251,255,255 254,255,255 255,255,255 0,0,0 252,252,252 253,253,253 255,255,255 255,255,255 254,255,255 254,255,255 253,254,254 253,241,241 253,222,221 253,211,212 254,200,204 254,192,197 253,191,196 252,195,201 252,190,197 254,185,189 254,188,188 252,192,193 252,206,209 253,232,232 252,248,247 254,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 254,254,254 251,252,251 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 254,251,251 251,225,225 249,180,183 253,168,171 250,176,175 254,188,189 253,190,191 251,193,195 253,197,202 252,206,211 255,213,217 254,213,216 251,226,228 254,243,245 253,252,252 253,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,255,254 254,254,254 254,254,254 252,253,253 254,255,255 255,255,255 254,254,253 253,246,248 253,234,236 253,214,215 252,201,200 253,192,189 254,185,184 253,183,183 253,187,185 253,190,189 253,188,190 252,200,202 253,220,222 253,244,246 253,252,253 255,250,251 253,252,252 254,255,255 252,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,247,247 250,219,221 250,216,220 251,235,237 253,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 252,254,254 251,248,249 253,250,250 255,255,255 254,255,255 253,255,255 254,253,253 253,255,255 253,255,255 254,255,255 253,251,251 253,233,235 251,223,223 253,219,220 252,207,210 253,194,198 254,185,187 255,185,186 255,187,186 255,187,187 254,187,189 253,187,189 253,195,196 253,216,218 254,241,243 254,252,253 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 253,247,246 250,224,225 251,223,226 249,234,237 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,253,254 249,220,225 248,228,232 255,255,255 252,255,255 253,255,255 255,255,255 255,255,255 255,254,254 253,244,244 249,211,210 251,185,187 252,189,194 253,194,199 254,189,192 255,186,188 255,188,187 254,189,188 254,191,193 253,197,199 253,203,206 254,217,220 255,241,244 254,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/68_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/68_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/68_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/68_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/68_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/68_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/68_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/68_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/68_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/68_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/68_original.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_bged.txt new file mode 100644 index 0000000..4cc2755 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_bged.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 114,114,114 108,108,108 101,101,101 140,140,140 175,175,175 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 121,121,121 118,118,118 122,122,122 118,118,118 96,96,96 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 84,84,84 77,77,77 82,82,82 90,90,90 108,108,108 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 175,175,175 127,127,127 130,130,130 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 156,156,156 126,126,126 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 91,91,91 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 76,76,76 123,123,123 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 81,81,81 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 143,143,143 172,172,172 154,154,154 105,105,105 154,154,154 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 172,172,172 117,117,117 158,158,158 255,255,255 255,255,255 102,102,102 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 76,76,76 115,115,115 255,255,255 255,255,255 255,255,255 177,177,177 94,94,94 255,255,255 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 160,160,160 120,120,120 175,175,175 99,99,99 112,112,112 181,181,181 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 129,129,129 255,255,255 255,255,255 255,255,255 145,145,145 85,85,85 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 117,117,117 76,76,76 76,76,76 96,96,96 255,255,255 255,255,255 255,255,255 171,171,171 255,255,255 255,255,255 171,171,171 97,97,97 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 104,104,104 84,84,84 139,139,139 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 175,175,175 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 83,83,83 123,123,123 255,255,255 255,255,255 255,255,255 159,159,159 107,107,107 82,82,82 131,131,131 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 124,124,124 255,255,255 255,255,255 146,146,146 96,96,96 180,180,180 141,141,141 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 255,255,255 98,98,98 77,77,77 76,76,76 76,76,76 119,119,119 255,255,255 255,255,255 131,131,131 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 131,131,131 110,110,110 80,80,80 90,90,90 152,152,152 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 157,157,157 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 120,120,120 255,255,255 255,255,255 255,255,255 175,175,175 175,175,175 171,171,171 90,90,90 255,255,255 255,255,255 255,255,255 76,76,76 105,105,105 255,255,255 255,255,255 143,143,143 76,76,76 149,149,149 124,124,124 100,100,100 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 163,163,163 177,177,177 255,255,255 255,255,255 98,98,98 114,114,114 255,255,255 255,255,255 114,114,114 255,255,255 255,255,255 119,119,119 255,255,255 173,173,173 170,170,170 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 100,100,100 76,76,76 76,76,76 76,76,76 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 171,171,171 177,177,177 255,255,255 176,176,176 76,76,76 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 76,76,76 255,255,255 255,255,255 139,139,139 255,255,255 255,255,255 255,255,255 98,98,98 121,121,121 255,255,255 178,178,178 151,151,151 255,255,255 255,255,255 104,104,104 255,255,255 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 149,149,149 255,255,255 255,255,255 100,100,100 160,160,160 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 76,76,76 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 76,76,76 255,255,255 255,255,255 94,94,94 105,105,105 132,132,132 114,114,114 255,255,255 255,255,255 139,139,139 116,116,116 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 131,131,131 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 157,157,157 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 150,150,150 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 131,131,131 255,255,255 147,147,147 76,76,76 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 91,91,91 108,108,108 171,171,171 255,255,255 255,255,255 255,255,255 76,76,76 160,160,160 255,255,255 121,121,121 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 130,130,130 164,164,164 175,175,175 255,255,255 255,255,255 255,255,255 77,77,77 94,94,94 255,255,255 255,255,255 255,255,255 152,152,152 166,166,166 255,255,255 255,255,255 181,181,181 255,255,255 255,255,255 110,110,110 76,76,76 164,164,164 163,163,163 118,118,118 115,115,115 121,121,121 152,152,152 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 77,77,77 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 255,255,255 255,255,255 91,91,91 255,255,255 131,131,131 255,255,255 255,255,255 132,132,132 76,76,76 118,118,118 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 137,137,137 255,255,255 255,255,255 101,101,101 76,76,76 94,94,94 181,181,181 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 160,160,160 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 76,76,76 153,153,153 255,255,255 255,255,255 127,127,127 255,255,255 255,255,255 255,255,255 159,159,159 170,170,170 115,115,115 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 177,177,177 255,255,255 173,173,173 164,164,164 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 99,99,99 255,255,255 255,255,255 77,77,77 76,76,76 149,149,149 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 113,113,113 255,255,255 255,255,255 100,100,100 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 177,177,177 255,255,255 255,255,255 255,255,255 136,136,136 255,255,255 255,255,255 122,122,122 76,76,76 140,140,140 255,255,255 255,255,255 255,255,255 141,141,141 146,146,146 255,255,255 255,255,255 255,255,255 97,97,97 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 255,255,255 255,255,255 255,255,255 159,159,159 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 142,142,142 88,88,88 112,112,112 125,125,125 107,107,107 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 109,109,109 112,112,112 138,138,138 255,255,255 255,255,255 255,255,255 76,76,76 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 163,163,163 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 86,86,86 91,91,91 104,104,104 125,125,125 145,145,145 112,112,112 255,255,255 255,255,255 139,139,139 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 164,164,164 181,181,181 148,148,148 90,90,90 76,76,76 101,101,101 163,163,163 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 79,79,79 76,76,76 84,84,84 111,111,111 122,122,122 126,126,126 255,255,255 255,255,255 76,76,76 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 167,167,167 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 161,161,161 255,255,255 255,255,255 255,255,255 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 140,140,140 169,169,169 255,255,255 122,122,122 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 255,255,255 105,105,105 255,255,255 255,255,255 255,255,255 143,143,143 165,165,165 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 255,255,255 107,107,107 76,76,76 170,170,170 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 76,76,76 114,114,114 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 140,140,140 255,255,255 255,255,255 255,255,255 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 181,181,181 90,90,90 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 115,115,115 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 151,151,151 255,255,255 255,255,255 255,255,255 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 181,181,181 255,255,255 255,255,255 149,149,149 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 175,175,175 255,255,255 255,255,255 76,76,76 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 136,136,136 255,255,255 255,255,255 255,255,255 159,159,159 180,180,180 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 83,83,83 123,123,123 158,158,158 179,179,179 255,255,255 255,255,255 180,180,180 139,139,139 114,114,114 115,115,115 255,255,255 92,92,92 80,80,80 76,76,76 82,82,82 133,133,133 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 122,122,122 255,255,255 255,255,255 164,164,164 107,107,107 117,117,117 132,132,132 255,255,255 255,255,255 255,255,255 138,138,138 76,76,76 177,177,177 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 105,105,105 141,141,141 255,255,255 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 92,92,92 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 101,101,101 255,255,255 255,255,255 96,96,96 76,76,76 76,76,76 76,76,76 76,76,76 171,171,171 255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 86,86,86 163,163,163 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 156,156,156 98,98,98 139,139,139 152,152,152 173,173,173 255,255,255 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 140,140,140 121,121,121 114,114,114 116,116,116 130,130,130 156,156,156 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 117,117,117 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 76,76,76 76,76,76 76,76,76 114,114,114 118,118,118 175,175,175 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 164,164,164 79,79,79 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 117,117,117 98,98,98 255,255,255 121,121,121 122,122,122 255,255,255 122,122,122 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 79,79,79 76,76,76 76,76,76 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 166,166,166 92,92,92 107,107,107 105,105,105 105,105,105 110,110,110 76,76,76 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 167,167,167 112,112,112 111,111,111 104,104,104 76,76,76 101,101,101 255,255,255 140,140,140 149,149,149 77,77,77 83,83,83 169,169,169 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 127,127,127 109,109,109 102,102,102 99,99,99 139,139,139 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 133,133,133 142,142,142 128,128,128 135,135,135 255,255,255 255,255,255 143,143,143 164,164,164 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 178,178,178 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_binaried.txt new file mode 100644 index 0000000..098f9be --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_binaried.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_greied.txt new file mode 100644 index 0000000..4690242 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_greied.txt @@ -0,0 +1,30 @@ +254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 218,218,218 204,204,204 205,205,205 207,207,207 239,239,239 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 76,76,76 248,248,248 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 +252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 244,244,244 255,255,255 255,255,255 255,255,255 253,253,253 236,236,236 221,221,221 221,221,221 228,228,228 248,248,248 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 237,237,237 249,249,249 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 248,248,248 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 76,76,76 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 250,250,250 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 +255,255,255 255,255,255 255,255,255 254,254,254 237,237,237 76,76,76 114,114,114 108,108,108 101,101,101 140,140,140 175,175,175 206,206,206 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 222,222,222 154,154,154 121,121,121 118,118,118 122,122,122 118,118,118 96,96,96 136,136,136 243,243,243 245,245,245 248,248,248 226,226,226 226,226,226 251,251,251 194,194,194 118,118,118 84,84,84 77,77,77 82,82,82 90,90,90 108,108,108 146,146,146 238,238,238 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 253,253,253 241,241,241 235,235,235 233,233,233 227,227,227 175,175,175 127,127,127 130,130,130 91,91,91 187,187,187 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 242,242,242 +255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 94,94,94 238,238,238 255,255,255 250,250,250 220,220,220 188,188,188 156,156,156 126,126,126 138,138,138 233,233,233 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 91,91,91 173,173,173 237,237,237 255,255,255 255,255,255 255,255,255 146,146,146 76,76,76 123,123,123 234,234,234 250,250,250 247,247,247 244,244,244 146,146,146 81,81,81 108,108,108 222,222,222 231,231,231 233,233,233 219,219,219 199,199,199 143,143,143 172,172,172 154,154,154 105,105,105 154,154,154 219,219,219 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 250,250,250 242,242,242 229,229,229 211,211,211 199,199,199 172,172,172 117,117,117 158,158,158 202,202,202 228,228,228 102,102,102 90,90,90 250,250,250 250,250,250 252,252,252 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 89,89,89 76,76,76 255,255,255 251,251,251 231,231,231 233,233,233 252,252,252 255,255,255 216,216,216 110,110,110 244,244,244 255,255,255 253,253,253 250,250,250 76,76,76 111,111,111 237,237,237 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 121,121,121 76,76,76 115,115,115 255,255,255 255,255,255 254,254,254 177,177,177 94,94,94 184,184,184 149,149,149 255,255,255 254,254,254 254,254,254 246,246,246 236,236,236 227,227,227 97,97,97 160,160,160 120,120,120 175,175,175 99,99,99 112,112,112 181,181,181 226,226,226 223,223,223 215,215,215 211,211,211 207,207,207 202,202,202 199,199,199 154,154,154 129,129,129 192,192,192 193,193,193 185,185,185 145,145,145 85,85,85 78,78,78 238,238,238 238,238,238 237,237,237 236,236,236 235,235,235 245,245,245 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 +255,255,255 255,255,255 255,255,255 255,255,255 215,215,215 118,118,118 255,255,255 255,255,255 117,117,117 76,76,76 76,76,76 96,96,96 219,219,219 255,255,255 184,184,184 171,171,171 255,255,255 255,255,255 171,171,171 97,97,97 241,241,241 255,255,255 250,250,250 253,253,253 255,255,255 255,255,255 254,254,254 104,104,104 84,84,84 139,139,139 255,255,255 255,255,255 255,255,255 103,103,103 185,185,185 184,184,184 175,175,175 253,253,253 249,249,249 241,241,241 234,234,234 76,76,76 226,226,226 83,83,83 123,123,123 182,182,182 207,207,207 202,202,202 159,159,159 107,107,107 82,82,82 131,131,131 193,193,193 194,194,194 197,197,197 199,199,199 171,171,171 124,124,124 194,194,194 193,193,193 146,146,146 96,96,96 180,180,180 141,141,141 88,88,88 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 188,188,188 146,146,146 255,255,255 255,255,255 98,98,98 77,77,77 76,76,76 76,76,76 119,119,119 255,255,255 250,250,250 131,131,131 255,255,255 237,237,237 90,90,90 217,217,217 254,254,254 255,255,255 251,251,251 241,241,241 174,174,174 131,131,131 110,110,110 80,80,80 90,90,90 152,152,152 255,255,255 255,255,255 255,255,255 76,76,76 226,226,226 157,157,157 198,198,198 253,253,253 240,240,240 223,223,223 212,212,212 206,206,206 201,201,201 101,101,101 120,120,120 193,193,193 193,193,193 183,183,183 175,175,175 175,175,175 171,171,171 90,90,90 195,195,195 198,198,198 202,202,202 76,76,76 105,105,105 211,211,211 215,215,215 143,143,143 76,76,76 149,149,149 124,124,124 100,100,100 142,142,142 254,254,254 254,254,254 255,255,255 254,254,254 250,250,250 245,245,245 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 163,163,163 177,177,177 255,255,255 240,240,240 98,98,98 114,114,114 252,252,252 223,223,223 114,114,114 255,255,255 254,254,254 119,119,119 255,255,255 173,173,173 170,170,170 255,255,255 254,254,254 255,255,255 195,195,195 110,110,110 100,100,100 76,76,76 76,76,76 76,76,76 82,82,82 188,188,188 255,255,255 255,255,255 250,250,250 89,89,89 255,255,255 129,129,129 219,219,219 254,254,254 251,251,251 244,244,244 238,238,238 226,226,226 213,213,213 135,135,135 182,182,182 199,199,199 203,203,203 76,76,76 198,198,198 200,200,200 203,203,203 89,89,89 225,225,225 235,235,235 241,241,241 171,171,171 177,177,177 253,253,253 176,176,176 76,76,76 100,100,100 200,200,200 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 250,250,250 245,245,245 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 76,76,76 255,255,255 255,255,255 139,139,139 206,206,206 252,252,252 209,209,209 98,98,98 121,121,121 255,255,255 178,178,178 151,151,151 231,231,231 210,210,210 104,104,104 255,255,255 132,132,132 233,233,233 255,255,255 252,252,252 209,209,209 149,149,149 255,255,255 209,209,209 100,100,100 160,160,160 209,209,209 248,248,248 253,253,253 249,249,249 253,253,253 240,240,240 123,123,123 252,252,252 102,102,102 238,238,238 254,254,254 255,255,255 223,223,223 121,121,121 244,244,244 246,246,246 242,242,242 242,242,242 236,236,236 113,113,113 245,245,245 246,246,246 248,248,248 220,220,220 108,108,108 255,255,255 255,255,255 255,255,255 112,112,112 244,244,244 227,227,227 76,76,76 84,84,84 234,234,234 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 76,76,76 255,255,255 188,188,188 94,94,94 105,105,105 132,132,132 114,114,114 229,229,229 218,218,218 139,139,139 116,116,116 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 131,131,131 243,243,243 222,222,222 125,125,125 242,242,242 255,255,255 254,254,254 255,255,255 246,246,246 233,233,233 248,248,248 229,229,229 152,152,152 251,251,251 82,82,82 252,252,252 254,254,254 250,250,250 157,157,157 87,87,87 224,224,224 254,254,254 254,254,254 254,254,254 150,150,150 80,80,80 254,254,254 254,254,254 254,254,254 188,188,188 135,135,135 255,255,255 255,255,255 230,230,230 131,131,131 255,255,255 147,147,147 76,76,76 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +254,254,254 255,255,255 255,255,255 255,255,255 108,108,108 254,254,254 254,254,254 208,208,208 91,91,91 108,108,108 171,171,171 250,250,250 255,255,255 222,222,222 76,76,76 160,160,160 255,255,255 121,121,121 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 136,136,136 229,229,229 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 213,213,213 76,76,76 228,228,228 103,103,103 254,254,254 255,255,255 254,254,254 130,130,130 164,164,164 175,175,175 254,254,254 254,254,254 220,220,220 77,77,77 94,94,94 254,254,254 254,254,254 255,255,255 152,152,152 166,166,166 255,255,255 255,255,255 181,181,181 182,182,182 255,255,255 110,110,110 76,76,76 164,164,164 163,163,163 118,118,118 115,115,115 121,121,121 152,152,152 212,212,212 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 +254,254,254 255,255,255 255,255,255 249,249,249 118,118,118 228,228,228 240,240,240 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 243,243,243 103,103,103 77,77,77 224,224,224 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 117,117,117 247,247,247 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 196,196,196 196,196,196 201,201,201 133,133,133 255,255,255 255,255,255 254,254,254 91,91,91 224,224,224 131,131,131 255,255,255 255,255,255 132,132,132 76,76,76 118,118,118 255,255,255 255,255,255 255,255,255 115,115,115 199,199,199 255,255,255 254,254,254 137,137,137 229,229,229 255,255,255 101,101,101 76,76,76 94,94,94 181,181,181 243,243,243 255,255,255 255,255,255 213,213,213 98,98,98 160,160,160 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 248,248,248 +255,255,255 255,255,255 255,255,255 227,227,227 139,139,139 224,224,224 247,247,247 250,250,250 241,241,241 241,241,241 245,245,245 209,209,209 103,103,103 76,76,76 153,153,153 254,254,254 253,253,253 127,127,127 216,216,216 247,247,247 253,253,253 159,159,159 170,170,170 115,115,115 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 255,255,255 177,177,177 216,216,216 173,173,173 164,164,164 254,254,254 254,254,254 233,233,233 77,77,77 221,221,221 99,99,99 251,251,251 234,234,234 77,77,77 76,76,76 149,149,149 255,255,255 255,255,255 251,251,251 82,82,82 233,233,233 254,254,254 246,246,246 113,113,113 254,254,254 254,254,254 100,100,100 142,142,142 245,245,245 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 194,194,194 76,76,76 206,206,206 254,254,254 252,252,252 230,230,230 234,234,234 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 236,236,236 +255,255,255 255,255,255 255,255,255 209,209,209 177,177,177 254,254,254 254,254,254 252,252,252 136,136,136 242,242,242 238,238,238 122,122,122 76,76,76 140,140,140 239,239,239 233,233,233 217,217,217 141,141,141 146,146,146 212,212,212 224,224,224 223,223,223 97,97,97 95,95,95 202,202,202 255,255,255 236,236,236 202,202,202 174,174,174 236,236,236 255,255,255 255,255,255 159,159,159 233,233,233 145,145,145 195,195,195 255,255,255 255,255,255 196,196,196 115,115,115 142,142,142 88,88,88 112,112,112 125,125,125 107,107,107 125,125,125 188,188,188 255,255,255 255,255,255 220,220,220 90,90,90 235,235,235 213,213,213 208,208,208 109,109,109 236,236,236 254,254,254 207,207,207 226,226,226 152,152,152 109,109,109 112,112,112 138,138,138 229,229,229 255,255,255 237,237,237 76,76,76 132,132,132 254,254,254 249,249,249 232,232,232 238,238,238 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 188,188,188 199,199,199 255,255,255 254,254,254 255,255,255 77,77,77 229,229,229 255,255,255 240,240,240 104,104,104 226,226,226 213,213,213 204,204,204 194,194,194 163,163,163 99,99,99 193,193,193 196,196,196 208,208,208 202,202,202 103,103,103 86,86,86 91,91,91 104,104,104 125,125,125 145,145,145 112,112,112 251,251,251 255,255,255 139,139,139 248,248,248 108,108,108 221,221,221 254,254,254 254,254,254 164,164,164 181,181,181 148,148,148 90,90,90 76,76,76 101,101,101 163,163,163 109,109,109 223,223,223 253,253,253 254,254,254 182,182,182 128,128,128 234,234,234 213,213,213 211,211,211 108,108,108 236,236,236 254,254,254 192,192,192 79,79,79 76,76,76 84,84,84 111,111,111 122,122,122 126,126,126 254,254,254 251,251,251 76,76,76 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 167,167,167 219,219,219 254,254,254 255,255,255 247,247,247 76,76,76 161,161,161 255,255,255 249,249,249 184,184,184 149,149,149 196,196,196 192,192,192 194,194,194 193,193,193 93,93,93 149,149,149 194,194,194 201,201,201 212,212,212 230,230,230 250,250,250 253,253,253 252,252,252 255,255,255 250,250,250 140,140,140 169,169,169 255,255,255 122,122,122 245,245,245 77,77,77 220,220,220 210,210,210 218,218,218 126,126,126 222,222,222 254,254,254 255,255,255 219,219,219 152,152,152 187,187,187 105,105,105 251,251,251 255,255,255 255,255,255 143,143,143 165,165,165 254,254,254 253,253,253 251,251,251 133,133,133 237,237,237 255,255,255 107,107,107 76,76,76 170,170,170 250,250,250 255,255,255 233,233,233 115,115,115 254,254,254 246,246,246 76,76,76 114,114,114 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 147,147,147 233,233,233 252,252,252 249,249,249 231,231,231 81,81,81 140,140,140 254,254,254 227,227,227 201,201,201 105,105,105 189,189,189 196,196,196 203,203,203 198,198,198 181,181,181 90,90,90 132,132,132 191,191,191 198,198,198 202,202,202 209,209,209 229,229,229 247,247,247 254,254,254 254,254,254 222,222,222 123,123,123 255,255,255 115,115,115 202,202,202 76,76,76 237,237,237 234,234,234 228,228,228 96,96,96 218,218,218 237,237,237 255,255,255 254,254,254 133,133,133 196,196,196 151,151,151 254,254,254 255,255,255 255,255,255 107,107,107 208,208,208 255,255,255 255,255,255 255,255,255 181,181,181 188,188,188 254,254,254 149,149,149 94,94,94 245,245,245 255,255,255 245,245,245 185,185,185 175,175,175 255,255,255 213,213,213 76,76,76 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 250,250,250 129,129,129 243,243,243 245,245,245 242,242,242 212,212,212 76,76,76 136,136,136 189,189,189 248,248,248 233,233,233 159,159,159 180,180,180 243,243,243 236,236,236 231,231,231 231,231,231 199,199,199 106,106,106 83,83,83 123,123,123 158,158,158 179,179,179 195,195,195 201,201,201 180,180,180 139,139,139 114,114,114 115,115,115 255,255,255 92,92,92 80,80,80 76,76,76 82,82,82 133,133,133 187,187,187 102,102,102 211,211,211 228,228,228 251,251,251 251,251,251 120,120,120 147,147,147 201,201,201 254,254,254 255,255,255 245,245,245 82,82,82 247,247,247 254,254,254 255,255,255 255,255,255 247,247,247 122,122,122 251,251,251 252,252,252 164,164,164 107,107,107 117,117,117 132,132,132 193,193,193 247,247,247 254,254,254 138,138,138 76,76,76 177,177,177 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 252,252,252 254,254,254 +254,254,254 233,233,233 217,217,217 106,106,106 243,243,243 252,252,252 254,254,254 185,185,185 86,86,86 105,105,105 141,141,141 249,249,249 255,255,255 233,233,233 124,124,124 254,254,254 254,254,254 254,254,254 255,255,255 245,245,245 227,227,227 157,157,157 92,92,92 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 101,101,101 240,240,240 196,196,196 96,96,96 76,76,76 76,76,76 76,76,76 76,76,76 171,171,171 251,251,251 255,255,255 255,255,255 227,227,227 107,107,107 86,86,86 163,163,163 230,230,230 255,255,255 208,208,208 119,119,119 255,255,255 255,255,255 248,248,248 240,240,240 253,253,253 191,191,191 145,145,145 252,252,252 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 191,191,191 76,76,76 86,86,86 238,238,238 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 241,241,241 218,218,218 224,224,224 247,247,247 +254,254,254 249,249,249 236,236,236 90,90,90 208,208,208 222,222,222 251,251,251 156,156,156 98,98,98 139,139,139 152,152,152 173,173,173 255,255,255 252,252,252 101,101,101 245,245,245 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 244,244,244 225,225,225 176,176,176 140,140,140 121,121,121 114,114,114 116,116,116 130,130,130 156,156,156 194,194,194 204,204,204 216,216,216 231,231,231 214,214,214 171,171,171 117,117,117 148,148,148 252,252,252 255,255,255 255,255,255 255,255,255 216,216,216 84,84,84 76,76,76 76,76,76 76,76,76 114,114,114 118,118,118 175,175,175 255,255,255 254,254,254 251,251,251 245,245,245 253,253,253 255,255,255 157,157,157 109,109,109 192,192,192 238,238,238 249,249,249 249,249,249 241,241,241 164,164,164 79,79,79 77,77,77 192,192,192 255,255,255 253,253,253 249,249,249 251,251,251 255,255,255 254,254,254 255,255,255 250,250,250 240,240,240 216,216,216 207,207,207 +255,255,255 254,254,254 252,252,252 95,95,95 214,214,214 232,232,232 251,251,251 117,117,117 98,98,98 213,213,213 121,121,121 122,122,122 226,226,226 122,122,122 76,76,76 240,240,240 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 243,243,243 233,233,233 223,223,223 211,211,211 201,201,201 196,196,196 193,193,193 193,193,193 196,196,196 202,202,202 207,207,207 211,211,211 227,227,227 232,232,232 220,220,220 240,240,240 255,255,255 254,254,254 251,251,251 248,248,248 237,237,237 146,146,146 79,79,79 76,76,76 76,76,76 91,91,91 241,241,241 255,255,255 253,253,253 254,254,254 255,255,255 254,254,254 253,253,253 250,250,250 166,166,166 92,92,92 107,107,107 105,105,105 105,105,105 110,110,110 76,76,76 88,88,88 187,187,187 235,235,235 235,235,235 235,235,235 235,235,235 243,243,243 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 231,231,231 212,212,212 +254,254,254 254,254,254 254,254,254 167,167,167 112,112,112 111,111,111 104,104,104 76,76,76 101,101,101 255,255,255 140,140,140 149,149,149 77,77,77 83,83,83 169,169,169 255,255,255 254,254,254 252,252,252 237,237,237 249,249,249 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 246,246,246 235,235,235 220,220,220 215,215,215 219,219,219 223,223,223 229,229,229 217,217,217 228,228,228 247,247,247 244,244,244 249,249,249 254,254,254 247,247,247 251,251,251 254,254,254 255,255,255 255,255,255 227,227,227 139,139,139 101,101,101 223,223,223 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 245,245,245 223,223,223 209,209,209 182,182,182 127,127,127 109,109,109 102,102,102 99,99,99 139,139,139 216,216,216 240,240,240 248,248,248 252,252,252 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 +255,255,255 255,255,255 255,255,255 250,250,250 146,146,146 133,133,133 142,142,142 128,128,128 135,135,135 255,255,255 250,250,250 143,143,143 164,164,164 240,240,240 255,255,255 255,255,255 254,254,254 248,248,248 250,250,250 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 238,238,238 251,251,251 254,254,254 254,254,254 252,252,252 251,251,251 252,252,252 253,253,253 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 250,250,250 237,237,237 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 249,249,249 230,230,230 210,210,210 197,197,197 193,193,193 194,194,194 194,194,194 194,194,194 194,194,194 198,198,198 218,218,218 244,244,244 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 241,241,241 231,231,231 248,248,248 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 251,251,251 252,252,252 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 242,242,242 225,225,225 215,215,215 207,207,207 200,200,200 199,199,199 203,203,203 198,198,198 193,193,193 195,195,195 198,198,198 211,211,211 234,234,234 248,248,248 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 251,251,251 227,227,227 188,188,188 178,178,178 183,183,183 195,195,195 197,197,197 199,199,199 204,204,204 212,212,212 218,218,218 218,218,218 229,229,229 244,244,244 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 254,254,254 254,254,254 252,252,252 254,254,254 255,255,255 253,253,253 247,247,247 236,236,236 218,218,218 206,206,206 197,197,197 192,192,192 190,190,190 193,193,193 196,196,196 195,195,195 206,206,206 224,224,224 245,245,245 252,252,252 250,250,250 252,252,252 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 223,223,223 220,220,220 237,237,237 254,254,254 76,76,76 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 251,251,251 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 253,253,253 248,248,248 250,250,250 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 251,251,251 235,235,235 226,226,226 223,223,223 212,212,212 201,201,201 193,193,193 193,193,193 194,194,194 194,194,194 194,194,194 194,194,194 201,201,201 220,220,220 243,243,243 252,252,252 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 247,247,247 227,227,227 226,226,226 236,236,236 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 224,224,224 231,231,231 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 76,76,76 214,214,214 192,192,192 197,197,197 201,201,201 197,197,197 194,194,194 195,195,195 195,195,195 198,198,198 203,203,203 209,209,209 221,221,221 243,243,243 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_noised.txt new file mode 100644 index 0000000..8908a42 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_noised.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 114,114,114 108,108,108 101,101,101 140,140,140 175,175,175 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 121,121,121 118,118,118 122,122,122 118,118,118 96,96,96 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 84,84,84 77,77,77 82,82,82 90,90,90 108,108,108 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 175,175,175 127,127,127 130,130,130 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 156,156,156 126,126,126 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 91,91,91 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 76,76,76 123,123,123 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 81,81,81 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 143,143,143 172,172,172 154,154,154 105,105,105 154,154,154 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 172,172,172 117,117,117 158,158,158 255,255,255 255,255,255 102,102,102 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 76,76,76 115,115,115 255,255,255 255,255,255 255,255,255 177,177,177 94,94,94 255,255,255 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 160,160,160 120,120,120 175,175,175 99,99,99 112,112,112 181,181,181 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 154,154,154 129,129,129 255,255,255 255,255,255 255,255,255 145,145,145 85,85,85 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 117,117,117 76,76,76 76,76,76 96,96,96 255,255,255 255,255,255 255,255,255 171,171,171 255,255,255 255,255,255 171,171,171 97,97,97 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 104,104,104 84,84,84 139,139,139 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 175,175,175 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 123,123,123 255,255,255 255,255,255 255,255,255 159,159,159 107,107,107 82,82,82 131,131,131 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 124,124,124 255,255,255 255,255,255 146,146,146 96,96,96 180,180,180 141,141,141 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 255,255,255 98,98,98 77,77,77 76,76,76 76,76,76 119,119,119 255,255,255 255,255,255 131,131,131 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 131,131,131 110,110,110 80,80,80 90,90,90 152,152,152 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 157,157,157 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 120,120,120 255,255,255 255,255,255 255,255,255 175,175,175 175,175,175 171,171,171 90,90,90 255,255,255 255,255,255 255,255,255 76,76,76 105,105,105 255,255,255 255,255,255 143,143,143 76,76,76 149,149,149 124,124,124 100,100,100 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 163,163,163 177,177,177 255,255,255 255,255,255 98,98,98 114,114,114 255,255,255 255,255,255 114,114,114 255,255,255 255,255,255 119,119,119 255,255,255 173,173,173 170,170,170 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 100,100,100 76,76,76 76,76,76 76,76,76 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 171,171,171 177,177,177 255,255,255 176,176,176 76,76,76 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 255,255,255 255,255,255 255,255,255 98,98,98 121,121,121 255,255,255 178,178,178 151,151,151 255,255,255 255,255,255 104,104,104 255,255,255 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 149,149,149 255,255,255 255,255,255 100,100,100 160,160,160 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 76,76,76 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 76,76,76 255,255,255 255,255,255 94,94,94 105,105,105 132,132,132 114,114,114 255,255,255 255,255,255 139,139,139 116,116,116 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 131,131,131 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 157,157,157 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 150,150,150 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 131,131,131 255,255,255 147,147,147 76,76,76 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 91,91,91 108,108,108 171,171,171 255,255,255 255,255,255 255,255,255 76,76,76 160,160,160 255,255,255 121,121,121 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 130,130,130 164,164,164 175,175,175 255,255,255 255,255,255 255,255,255 77,77,77 94,94,94 255,255,255 255,255,255 255,255,255 152,152,152 166,166,166 255,255,255 255,255,255 181,181,181 255,255,255 255,255,255 110,110,110 76,76,76 164,164,164 163,163,163 118,118,118 115,115,115 121,121,121 152,152,152 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 77,77,77 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 255,255,255 255,255,255 91,91,91 255,255,255 131,131,131 255,255,255 255,255,255 132,132,132 76,76,76 118,118,118 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 137,137,137 255,255,255 255,255,255 101,101,101 76,76,76 94,94,94 181,181,181 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 160,160,160 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 76,76,76 153,153,153 255,255,255 255,255,255 127,127,127 255,255,255 255,255,255 255,255,255 159,159,159 170,170,170 115,115,115 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 177,177,177 255,255,255 173,173,173 164,164,164 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 99,99,99 255,255,255 255,255,255 77,77,77 76,76,76 149,149,149 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 113,113,113 255,255,255 255,255,255 100,100,100 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 177,177,177 255,255,255 255,255,255 255,255,255 136,136,136 255,255,255 255,255,255 122,122,122 76,76,76 140,140,140 255,255,255 255,255,255 255,255,255 141,141,141 146,146,146 255,255,255 255,255,255 255,255,255 97,97,97 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 255,255,255 255,255,255 255,255,255 159,159,159 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 142,142,142 88,88,88 112,112,112 125,125,125 107,107,107 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 109,109,109 112,112,112 138,138,138 255,255,255 255,255,255 255,255,255 76,76,76 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 163,163,163 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 86,86,86 91,91,91 104,104,104 125,125,125 145,145,145 112,112,112 255,255,255 255,255,255 139,139,139 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 164,164,164 181,181,181 148,148,148 90,90,90 76,76,76 101,101,101 163,163,163 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 255,255,255 255,255,255 79,79,79 76,76,76 84,84,84 111,111,111 122,122,122 126,126,126 255,255,255 255,255,255 76,76,76 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 167,167,167 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 161,161,161 255,255,255 255,255,255 255,255,255 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 149,149,149 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 140,140,140 169,169,169 255,255,255 122,122,122 255,255,255 77,77,77 255,255,255 255,255,255 255,255,255 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 255,255,255 105,105,105 255,255,255 255,255,255 255,255,255 143,143,143 165,165,165 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 255,255,255 107,107,107 76,76,76 170,170,170 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 76,76,76 114,114,114 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 140,140,140 255,255,255 255,255,255 255,255,255 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 181,181,181 90,90,90 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 115,115,115 255,255,255 76,76,76 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 133,133,133 255,255,255 151,151,151 255,255,255 255,255,255 255,255,255 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 181,181,181 255,255,255 255,255,255 149,149,149 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 175,175,175 255,255,255 255,255,255 76,76,76 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 136,136,136 255,255,255 255,255,255 255,255,255 159,159,159 180,180,180 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 83,83,83 123,123,123 158,158,158 179,179,179 255,255,255 255,255,255 180,180,180 139,139,139 114,114,114 115,115,115 255,255,255 92,92,92 80,80,80 76,76,76 82,82,82 133,133,133 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 122,122,122 255,255,255 255,255,255 164,164,164 107,107,107 117,117,117 132,132,132 255,255,255 255,255,255 255,255,255 138,138,138 76,76,76 177,177,177 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 105,105,105 141,141,141 255,255,255 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 92,92,92 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 76,76,76 101,101,101 255,255,255 255,255,255 96,96,96 76,76,76 76,76,76 76,76,76 76,76,76 171,171,171 255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 86,86,86 163,163,163 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 156,156,156 98,98,98 139,139,139 152,152,152 173,173,173 255,255,255 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 140,140,140 121,121,121 114,114,114 116,116,116 130,130,130 156,156,156 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 117,117,117 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 76,76,76 76,76,76 76,76,76 114,114,114 118,118,118 175,175,175 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 157,157,157 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 164,164,164 79,79,79 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 117,117,117 98,98,98 255,255,255 121,121,121 122,122,122 255,255,255 122,122,122 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 79,79,79 76,76,76 76,76,76 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 166,166,166 92,92,92 107,107,107 105,105,105 105,105,105 110,110,110 76,76,76 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 167,167,167 112,112,112 111,111,111 104,104,104 76,76,76 101,101,101 255,255,255 140,140,140 149,149,149 77,77,77 83,83,83 169,169,169 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 127,127,127 109,109,109 102,102,102 99,99,99 139,139,139 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 133,133,133 142,142,142 128,128,128 135,135,135 255,255,255 255,255,255 143,143,143 164,164,164 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_original.txt new file mode 100644 index 0000000..170407a --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/69_original.txt @@ -0,0 +1,30 @@ +254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,254,254 248,215,216 253,197,200 253,200,199 251,202,203 252,237,241 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 0,0,255 254,248,249 254,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 +253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,243,244 249,244,245 255,255,255 255,255,255 255,255,255 253,254,254 252,234,235 252,217,220 249,219,218 252,226,226 254,247,249 254,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,255,255 254,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,252,252 250,235,237 252,249,249 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,251,251 252,248,249 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 0,0,255 0,0,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,250,250 254,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 254,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,252,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 255,255,255 253,252,253 253,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 253,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,254 +255,255,255 255,255,255 255,255,255 255,254,254 247,236,238 0,0,255 54,54,255 45,46,255 36,36,255 92,92,255 142,142,255 186,186,255 0,0,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 208,208,255 112,112,255 64,64,254 61,60,253 66,66,255 60,60,255 28,28,255 86,86,255 241,240,252 253,244,246 254,247,248 249,223,226 251,223,226 254,251,251 168,168,255 60,60,255 12,12,255 2,2,255 8,8,255 20,20,255 46,46,255 101,100,253 235,233,250 254,254,254 254,255,255 253,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,255,255 253,253,253 252,253,253 253,255,255 254,253,253 251,240,241 252,234,234 254,231,231 250,223,228 164,146,238 79,74,250 78,77,254 22,22,255 158,158,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 253,255,255 254,255,255 251,241,243 +255,255,255 255,255,255 255,255,255 255,255,255 254,254,255 26,26,255 232,232,255 255,255,255 248,248,255 206,206,255 160,160,255 114,114,255 72,72,255 88,88,255 224,224,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 116,116,255 22,22,255 138,138,255 230,230,255 255,255,255 255,255,255 255,255,255 100,100,254 0,0,255 69,68,253 250,232,235 255,250,250 253,247,247 252,244,244 99,100,254 7,8,254 46,46,254 208,208,255 222,222,255 224,224,255 204,204,254 178,176,253 97,96,253 138,138,254 112,112,255 42,42,255 111,112,255 204,204,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,250,251 253,241,243 252,226,228 253,205,208 254,191,195 200,150,205 88,65,232 172,128,212 244,194,203 253,225,226 40,38,253 21,21,254 252,250,250 254,250,251 255,252,252 255,254,254 255,255,255 254,254,254 253,254,254 255,255,255 255,255,255 254,255,255 253,255,255 253,255,255 253,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 236,236,255 18,18,255 0,0,255 255,255,255 250,250,255 222,222,255 224,224,255 252,252,255 255,255,255 200,200,255 48,48,255 240,240,255 255,255,255 254,253,253 251,250,250 0,0,255 50,50,255 230,230,255 254,255,255 254,255,255 255,255,255 255,255,255 254,254,254 64,64,255 0,0,255 56,56,255 255,255,255 255,255,255 254,255,255 144,144,255 26,26,255 154,154,255 104,104,255 255,255,255 254,255,255 253,255,255 252,246,247 247,235,237 216,216,254 29,30,254 121,121,254 64,63,254 144,142,252 33,33,254 54,52,253 161,153,245 245,221,230 254,219,221 253,210,214 253,205,210 251,200,205 252,194,201 253,192,196 167,124,211 115,85,223 252,185,186 255,186,187 229,171,197 131,107,228 15,14,253 3,3,254 248,237,239 249,237,238 250,236,236 251,235,235 249,234,234 249,245,245 255,255,255 254,255,255 253,255,255 254,255,255 255,255,255 255,255,255 254,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 198,198,255 60,60,255 255,255,255 255,255,255 58,58,255 0,0,255 0,0,255 28,28,255 204,204,255 255,255,255 154,154,255 136,136,255 255,255,255 255,255,255 136,136,254 30,30,255 236,236,255 255,255,255 251,250,251 254,253,253 255,255,255 255,255,255 254,254,254 40,40,255 12,12,255 90,90,255 255,255,255 255,255,255 255,255,255 38,38,255 156,156,255 154,154,255 141,142,254 255,253,254 254,249,250 252,241,240 253,232,233 0,0,255 253,222,224 12,10,253 86,71,241 197,161,220 252,201,205 253,195,199 175,130,211 65,49,238 13,10,251 119,88,223 254,186,187 254,187,188 254,190,192 253,191,198 186,146,216 97,74,233 254,186,191 255,185,188 154,111,214 41,31,244 196,158,218 106,95,245 18,17,254 253,255,255 253,255,255 253,255,255 254,255,255 253,253,252 254,254,254 255,255,255 254,255,255 253,255,255 254,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 160,160,255 100,100,255 255,255,255 255,255,255 32,32,255 2,2,255 0,0,255 0,0,255 62,62,255 255,255,255 248,248,255 78,78,255 255,255,255 230,230,255 20,20,255 202,202,255 254,255,255 255,255,255 251,251,251 238,237,253 140,140,255 78,78,255 48,48,255 6,6,255 20,20,255 108,108,255 255,255,255 255,255,255 255,255,255 0,0,255 214,214,255 116,116,255 174,174,255 253,253,254 252,238,240 252,219,223 252,206,211 253,199,204 253,194,198 54,39,242 96,70,230 254,185,187 255,185,186 253,174,178 253,165,167 253,165,168 216,152,192 31,23,246 253,188,190 252,191,194 253,195,199 0,0,255 53,44,246 241,202,218 253,210,214 125,102,232 0,0,255 121,108,241 73,70,251 36,35,254 94,94,255 253,255,255 254,255,255 255,255,255 254,255,255 253,250,251 251,245,246 255,254,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 124,124,255 144,144,255 255,255,255 234,234,255 32,32,255 54,54,255 252,252,255 210,210,255 54,54,255 255,255,255 254,255,255 61,62,255 255,255,255 138,138,255 134,134,255 255,255,255 254,254,254 255,255,255 170,170,255 48,48,255 34,34,255 0,0,255 0,0,255 0,0,255 8,8,255 160,160,255 255,255,255 255,255,255 248,248,255 18,18,255 255,255,255 76,76,255 204,204,255 255,254,254 253,251,251 253,243,244 253,237,237 253,223,224 253,208,209 118,92,228 221,166,201 254,191,195 253,196,199 0,0,255 252,191,195 252,193,196 251,197,200 24,19,251 254,221,225 252,232,235 253,239,242 142,137,250 146,145,253 255,253,254 146,143,252 0,0,255 34,34,254 177,178,254 249,250,255 254,255,255 254,255,255 253,255,255 254,255,255 255,255,255 254,255,255 254,250,251 251,244,245 255,254,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,255 255,255,255 255,255,255 90,90,255 186,186,255 253,253,253 190,190,255 32,32,255 64,64,255 255,255,255 146,146,255 113,109,250 251,228,231 216,198,234 41,41,254 255,255,255 80,80,255 224,224,255 255,255,255 253,253,253 190,190,254 104,104,255 255,255,255 190,190,255 35,35,254 121,121,254 190,190,255 246,246,255 253,254,254 252,249,250 255,253,253 234,234,255 67,68,255 254,252,253 38,37,254 232,232,255 254,255,255 255,255,255 214,211,252 71,66,249 253,244,244 254,246,244 254,240,242 253,241,243 242,231,245 55,54,253 254,244,245 253,245,247 252,247,249 211,208,250 46,46,255 255,255,255 255,255,255 255,255,255 52,52,255 240,240,255 216,216,255 0,0,255 12,12,255 226,226,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 58,58,255 0,0,255 255,255,255 160,160,255 26,26,255 42,42,255 80,80,254 54,54,255 238,224,236 251,213,218 112,95,237 63,59,250 255,255,255 60,60,255 255,255,255 255,255,255 255,255,255 78,78,255 238,238,255 208,208,255 70,70,255 238,238,254 255,255,255 254,255,255 255,255,255 252,245,246 252,230,234 254,247,248 218,218,255 108,108,255 252,250,253 9,9,254 254,252,253 254,255,255 254,250,250 140,121,235 19,17,252 218,213,249 253,255,255 254,255,255 254,255,255 106,106,255 6,6,255 254,255,255 254,255,255 254,255,255 160,160,255 84,84,255 255,255,255 255,255,255 220,220,255 78,78,255 255,255,255 102,102,255 0,0,255 104,104,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +254,254,254 255,255,255 255,255,255 255,255,255 45,46,255 253,255,255 254,255,255 188,188,255 22,22,255 46,46,255 136,136,255 248,248,255 255,255,255 210,209,253 0,0,255 120,120,255 255,255,255 64,64,255 255,255,255 255,255,255 255,255,255 62,62,255 255,255,255 86,86,255 218,218,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 196,196,255 0,0,255 218,218,254 39,39,254 255,254,254 255,255,255 255,254,254 80,78,253 128,126,253 142,142,255 254,254,254 254,255,255 206,206,255 2,2,255 26,26,255 254,254,254 254,255,255 255,255,255 108,108,255 128,128,255 255,255,255 255,255,255 150,150,255 152,152,255 255,255,255 48,48,255 0,0,255 126,126,255 124,124,255 60,60,255 56,56,255 64,64,255 108,108,255 194,194,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 253,253,253 254,255,255 253,255,255 253,255,255 254,255,255 +254,254,254 255,255,255 255,255,255 248,248,254 63,61,252 249,225,228 252,238,240 253,255,255 254,255,255 255,255,255 255,255,255 255,255,255 238,238,255 38,38,255 2,2,255 212,212,255 255,255,255 56,56,255 255,255,255 255,255,255 255,255,255 58,58,255 244,244,255 62,62,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 172,172,255 172,172,255 178,178,255 82,82,255 255,255,255 255,255,255 254,254,254 22,22,255 212,212,255 78,78,255 255,255,255 255,255,255 80,80,255 0,0,255 60,60,255 255,255,255 255,255,255 255,255,255 56,56,255 176,176,255 255,255,255 254,254,254 88,87,254 218,218,255 255,255,255 36,36,255 0,0,255 26,26,254 150,150,255 238,238,255 255,255,255 255,255,255 196,196,255 32,32,255 120,120,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 255,255,255 254,254,254 253,255,255 253,255,255 255,254,255 254,247,249 +255,255,255 255,255,255 255,255,255 218,217,253 104,94,243 250,221,223 254,247,246 252,251,249 250,240,240 250,241,241 251,245,245 194,192,251 39,39,254 0,0,255 109,110,255 252,255,255 255,253,254 76,74,252 210,203,244 253,248,246 254,254,252 118,118,255 134,134,255 56,56,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 144,144,255 200,200,255 139,139,253 126,126,254 254,254,254 254,254,254 224,224,255 2,2,255 208,207,254 35,34,253 251,250,253 227,227,253 2,2,254 0,0,255 104,104,255 255,255,255 255,255,255 250,250,255 8,8,255 224,224,255 255,254,254 252,245,246 55,54,253 254,255,255 254,254,254 34,34,255 94,94,255 242,242,255 251,251,251 254,253,253 255,255,255 255,255,255 255,255,255 168,168,255 0,0,255 185,186,255 254,255,255 255,252,253 252,226,231 250,231,235 255,254,254 253,255,255 254,255,255 251,255,255 254,255,255 251,233,237 +255,255,255 255,255,255 255,255,255 189,190,254 143,144,255 254,255,255 251,255,255 253,252,252 89,87,251 252,242,241 251,237,238 72,68,249 0,0,255 99,94,247 250,238,239 250,232,232 252,212,215 125,99,230 139,108,224 253,208,208 253,221,222 236,216,235 32,30,253 28,28,254 180,180,255 255,255,255 228,228,255 180,180,255 140,140,255 228,228,255 255,255,255 255,255,255 118,118,255 224,224,255 98,98,255 170,170,255 255,255,255 255,255,255 173,173,252 55,56,254 94,94,255 18,17,254 52,52,255 70,70,255 44,44,255 70,70,255 160,160,255 255,255,255 255,255,255 206,206,255 20,20,255 249,234,234 251,207,211 254,201,206 61,50,244 252,233,237 253,255,255 185,188,255 214,214,255 108,108,255 48,47,254 52,52,254 88,88,255 218,218,255 255,255,255 230,230,255 0,0,255 79,80,255 254,255,255 253,249,250 250,229,232 251,236,239 254,254,255 253,255,255 253,255,255 254,255,255 254,254,254 253,255,255 +255,255,255 255,255,255 255,255,255 160,160,254 176,176,255 255,255,255 253,255,255 255,255,255 2,2,255 218,218,255 255,255,255 234,234,255 40,40,255 238,220,235 252,209,209 254,198,199 253,187,189 191,139,203 50,36,241 255,186,186 255,188,192 253,202,205 207,187,231 40,39,254 14,14,255 22,22,255 40,40,255 70,70,255 98,98,255 52,52,255 250,250,255 255,255,255 90,90,255 246,246,255 46,46,255 208,208,254 254,254,254 254,254,254 128,127,253 154,151,250 104,103,254 20,20,255 0,0,255 39,36,252 138,128,243 49,48,253 223,214,242 254,253,253 254,254,254 152,152,255 74,74,255 248,233,233 251,207,211 254,205,210 59,49,245 252,234,237 254,255,255 163,166,255 4,4,255 0,0,255 12,12,255 50,50,255 66,66,255 72,72,254 254,254,254 250,250,255 0,0,255 44,44,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,254,254 254,254,254 +255,255,255 255,255,255 255,255,255 130,130,255 204,204,254 254,254,254 255,255,255 244,244,255 0,0,255 122,122,255 255,255,255 253,249,250 173,158,240 136,111,229 252,189,191 253,185,185 255,187,186 254,186,187 37,27,245 155,116,215 254,186,191 255,193,199 252,206,210 253,226,230 255,249,251 252,254,254 252,253,253 255,255,255 248,248,255 92,91,254 134,134,252 255,255,255 66,66,255 242,242,255 2,2,255 233,213,230 248,205,209 251,213,216 79,74,248 208,208,255 254,254,254 255,255,255 206,205,253 126,113,241 183,164,234 43,43,253 252,252,250 255,255,255 255,255,255 96,96,254 128,128,253 254,254,254 254,253,253 254,251,251 82,81,254 230,230,255 255,255,255 44,44,255 0,0,255 134,134,255 248,248,255 255,255,255 224,224,255 56,56,255 254,254,254 244,244,254 0,0,255 54,54,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 102,102,255 224,224,255 254,252,253 252,249,250 222,222,255 8,8,254 92,92,255 254,255,255 250,224,227 253,195,197 62,46,240 246,180,188 252,189,192 255,195,200 254,190,196 213,163,205 27,21,249 112,87,230 239,179,198 254,191,194 253,195,199 252,203,208 253,225,229 253,247,248 254,255,255 254,255,255 209,209,253 67,67,254 255,255,255 56,56,255 180,180,255 0,0,255 238,232,249 251,231,234 253,224,227 35,30,249 247,213,219 252,236,236 255,255,255 254,255,255 81,82,255 172,172,255 106,108,255 254,255,255 255,255,255 255,255,255 44,44,255 188,188,255 255,255,255 255,255,255 255,255,255 150,150,255 160,160,255 254,254,254 105,105,254 26,26,255 242,242,255 255,255,255 242,242,254 157,157,253 142,142,255 255,255,255 196,196,255 0,0,255 84,84,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 253,250,251 76,76,254 238,238,255 251,245,246 248,241,242 194,194,255 0,0,255 86,86,255 162,163,253 254,247,248 251,232,231 134,123,241 164,153,241 253,243,241 253,234,236 253,228,231 253,227,231 228,187,215 61,47,241 15,11,251 102,75,228 175,130,208 223,164,195 248,187,193 234,192,208 174,155,234 98,92,249 55,55,254 56,56,255 255,255,255 23,24,254 6,6,255 0,0,255 8,8,255 81,82,255 161,160,252 47,40,247 251,206,209 249,226,227 253,251,252 252,251,251 67,64,251 108,103,248 178,178,255 254,255,255 255,255,255 242,242,255 8,8,255 244,244,255 254,254,254 255,255,255 255,255,255 244,244,255 66,66,255 250,250,254 252,252,254 126,126,255 44,44,255 58,58,255 80,80,255 168,168,254 251,247,248 255,254,254 88,88,255 0,0,255 144,144,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,251,251 254,252,252 254,255,255 +254,255,255 250,231,234 252,211,216 49,44,249 242,240,250 253,253,253 254,255,255 156,156,255 14,14,255 42,42,255 93,94,254 248,248,254 255,255,255 224,224,255 68,68,255 254,255,255 253,255,255 254,255,255 255,255,255 253,245,245 252,224,227 156,124,223 35,26,245 0,0,255 0,0,255 0,0,255 0,0,255 0,0,255 0,0,255 0,0,255 41,37,250 253,238,241 178,173,250 28,28,255 0,0,255 0,0,255 0,0,255 0,0,255 138,136,253 253,251,251 255,255,255 255,255,255 216,216,255 46,45,254 16,15,254 124,124,255 220,220,254 255,255,255 188,188,255 62,62,255 255,255,255 255,255,255 252,248,249 250,239,241 254,253,253 164,164,255 98,98,255 252,252,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 164,164,255 0,0,255 14,14,254 232,232,252 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 252,239,241 251,212,219 250,220,225 252,247,248 +251,255,255 255,248,249 252,234,235 27,22,249 251,203,203 247,220,219 254,251,252 113,114,255 32,32,255 90,90,255 108,108,255 138,138,255 255,255,255 252,252,255 36,36,255 242,242,255 255,254,254 254,254,254 254,255,255 253,255,255 254,255,255 253,243,243 253,222,223 197,155,210 134,101,219 98,72,229 84,60,232 89,64,229 118,85,223 174,126,209 245,184,196 254,196,202 253,211,214 252,229,229 212,201,242 140,137,251 60,59,254 104,103,253 252,252,255 255,255,255 255,255,255 255,255,255 200,200,255 12,12,255 0,0,255 0,0,255 0,0,255 54,54,255 60,60,255 142,142,255 255,255,255 253,255,255 252,251,252 252,244,246 253,253,254 255,255,255 116,116,255 47,47,254 166,166,254 233,232,252 253,249,250 253,249,249 236,236,255 126,126,255 4,4,255 1,2,254 166,166,255 255,255,255 255,253,253 254,249,250 253,251,251 255,255,255 254,255,255 255,255,255 252,250,251 249,239,241 253,211,214 253,202,203 +255,255,255 254,255,255 252,253,253 33,29,250 252,210,209 251,231,229 253,251,251 59,59,254 32,32,255 196,196,255 64,64,255 66,66,255 214,214,255 66,66,255 0,0,255 234,234,255 253,255,255 252,255,255 255,255,255 253,255,255 253,255,255 255,255,255 255,255,255 251,242,243 252,231,231 254,219,221 254,205,210 253,194,198 253,188,191 254,185,187 253,186,188 252,187,194 253,194,200 251,201,203 251,207,207 253,224,226 252,229,232 250,216,220 252,238,240 255,255,255 254,255,255 252,251,251 252,248,249 230,230,254 100,100,255 4,4,255 0,0,255 0,0,255 22,22,255 236,236,255 255,255,255 253,254,254 254,255,255 255,255,255 254,255,255 254,253,254 253,250,251 138,132,246 26,23,252 53,46,247 57,44,243 55,44,244 53,50,251 0,0,255 17,17,254 169,163,244 249,233,235 249,233,234 248,234,234 248,234,234 250,242,244 254,253,254 253,255,255 255,254,255 254,254,255 251,255,255 253,228,229 250,208,207 +254,254,255 255,254,255 251,255,255 130,130,255 52,52,255 50,50,255 40,40,255 0,0,255 36,36,255 255,255,255 92,92,255 104,104,254 2,2,255 10,10,254 133,133,253 255,255,255 253,255,255 253,252,252 250,235,238 253,249,250 253,255,255 254,255,255 253,255,255 253,255,255 253,255,255 254,255,255 254,253,254 253,245,246 253,233,235 251,215,219 253,209,215 253,213,220 251,218,223 254,225,228 251,212,215 251,225,227 254,247,247 252,243,244 254,249,249 254,254,254 252,247,248 253,251,251 254,254,254 255,255,255 255,255,255 216,216,255 90,90,255 36,36,255 210,210,255 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 254,244,246 251,219,222 254,203,206 220,166,202 109,81,225 72,52,235 58,42,239 45,36,245 112,95,238 229,208,230 249,240,240 251,248,248 253,253,253 253,255,255 252,255,255 254,255,255 255,255,255 255,255,255 254,255,255 253,255,255 253,255,255 254,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 248,248,255 100,100,255 82,82,255 94,94,255 74,74,255 84,84,255 255,255,255 248,248,255 96,96,255 126,126,255 234,234,255 255,255,255 255,255,255 255,254,255 251,248,248 254,250,251 255,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,245,247 250,236,239 252,252,252 254,255,255 255,254,255 254,252,253 253,251,251 253,252,253 254,253,254 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 253,250,251 249,235,238 253,250,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 253,255,255 254,255,255 255,255,255 253,249,249 252,227,230 254,203,208 255,189,192 254,186,187 253,187,187 253,187,187 254,187,188 254,186,190 253,190,196 253,213,215 255,243,244 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 255,255,255 255,255,255 254,255,255 254,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 251,239,242 249,228,232 252,247,249 255,255,255 255,255,255 253,255,255 254,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,255,255 252,255,255 255,255,255 251,255,255 254,255,255 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 254,255,255 254,255,255 253,254,254 253,241,241 253,222,221 253,211,212 254,200,204 254,192,197 253,191,196 252,195,201 252,190,197 254,185,189 254,188,188 252,192,193 252,206,209 253,232,232 252,248,247 254,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 254,254,254 251,252,251 255,255,255 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 254,251,251 251,225,225 249,180,183 253,168,171 250,176,175 254,188,189 253,190,191 251,193,195 253,197,202 252,206,211 255,213,217 254,213,216 251,226,228 254,243,245 253,252,252 253,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,254,254 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,255 254,254,254 255,255,255 254,254,254 254,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,255,254 254,254,254 254,254,254 252,253,253 254,255,255 255,255,255 254,254,253 253,246,248 253,234,236 253,214,215 252,201,200 253,192,189 254,185,184 253,183,183 253,187,185 253,190,189 253,188,190 252,200,202 253,220,222 253,244,246 253,252,253 255,250,251 253,252,252 254,255,255 252,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,247,247 250,219,221 250,216,220 251,235,237 253,255,255 0,0,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 252,254,254 251,248,249 253,250,250 255,255,255 254,255,255 253,255,255 254,253,253 253,255,255 253,255,255 254,255,255 253,251,251 253,233,235 251,223,223 253,219,220 252,207,210 253,194,198 254,185,187 255,185,186 255,187,186 255,187,187 254,187,189 253,187,189 253,195,196 253,216,218 254,241,243 254,252,253 255,255,255 254,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,255 253,247,246 250,224,225 251,223,226 249,234,237 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,255 254,253,254 249,220,225 248,228,232 255,255,255 252,255,255 253,255,255 255,255,255 255,255,255 255,254,254 0,0,255 249,211,210 251,185,187 252,189,194 253,194,199 254,189,192 255,186,188 255,188,187 254,189,188 254,191,193 253,197,199 253,203,206 254,217,220 255,241,244 254,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/6_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/6_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/6_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/6_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/6_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/6_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/6_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/70_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/70_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/70_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/70_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/70_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/70_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/70_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/70_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/70_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/70_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/70_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/71_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/71_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/71_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/71_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/71_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/71_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/71_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/71_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/71_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/71_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/71_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/74_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/74_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/74_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/74_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/74_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/74_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/74_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/74_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/74_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/74_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/74_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/75_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/75_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/75_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/75_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/75_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/75_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/75_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/75_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/75_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/75_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/75_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/76_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/76_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/76_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/76_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/76_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/76_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/76_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/76_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/76_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/76_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/76_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/77_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/77_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/77_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/77_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/77_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/77_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/77_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/77_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/77_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/77_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/77_original.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_bged.txt new file mode 100644 index 0000000..00836a3 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_bged.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 98,98,98 109,109,109 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 116,116,116 108,108,108 89,89,89 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 105,105,105 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 130,130,130 255,255,255 255,255,255 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 110,110,110 98,98,98 108,108,108 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 149,149,149 255,255,255 255,255,255 90,90,90 137,137,137 255,255,255 116,116,116 59,59,59 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 131,131,131 143,143,143 68,68,68 151,151,151 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 107,107,107 109,109,109 110,110,110 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 148,148,148 255,255,255 133,133,133 84,84,84 103,103,103 107,107,107 137,137,137 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 103,103,103 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 255,255,255 255,255,255 255,255,255 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 145,145,145 255,255,255 255,255,255 255,255,255 101,101,101 101,101,101 255,255,255 255,255,255 130,130,130 103,103,103 109,109,109 86,86,86 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 129,129,129 255,255,255 110,110,110 255,255,255 255,255,255 138,138,138 147,147,147 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 101,101,101 96,96,96 255,255,255 255,255,255 91,91,91 255,255,255 255,255,255 255,255,255 105,105,105 59,59,59 130,130,130 255,255,255 255,255,255 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 83,83,83 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 91,91,91 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 130,130,130 63,63,63 59,59,59 59,59,59 61,61,61 100,100,100 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 59,59,59 81,81,81 255,255,255 115,115,115 144,144,144 255,255,255 255,255,255 255,255,255 71,71,71 59,59,59 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 87,87,87 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 77,77,77 145,145,145 255,255,255 255,255,255 255,255,255 115,115,115 130,130,130 59,59,59 59,59,59 78,78,78 119,119,119 96,96,96 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 59,59,59 59,59,59 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 83,83,83 59,59,59 132,132,132 97,97,97 255,255,255 255,255,255 255,255,255 102,102,102 59,59,59 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 138,138,138 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 118,118,118 255,255,255 255,255,255 78,78,78 255,255,255 255,255,255 255,255,255 110,110,110 116,116,116 255,255,255 255,255,255 255,255,255 146,146,146 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 105,105,105 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 146,146,146 255,255,255 255,255,255 66,66,66 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 146,146,146 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 140,140,140 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 75,75,75 79,79,79 85,85,85 94,94,94 95,95,95 255,255,255 255,255,255 255,255,255 143,143,143 94,94,94 255,255,255 255,255,255 109,109,109 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 127,127,127 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 106,106,106 59,59,59 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 64,64,64 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 255,255,255 255,255,255 80,80,80 80,80,80 61,61,61 88,88,88 118,118,118 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 255,255,255 255,255,255 148,148,148 110,110,110 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 59,59,59 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 59,59,59 59,59,59 76,76,76 103,103,103 255,255,255 255,255,255 255,255,255 134,134,134 147,147,147 134,134,134 255,255,255 255,255,255 255,255,255 111,111,111 66,66,66 59,59,59 59,59,59 59,59,59 59,59,59 66,66,66 255,255,255 255,255,255 141,141,141 78,78,78 255,255,255 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 148,148,148 255,255,255 255,255,255 91,91,91 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 59,59,59 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 151,151,151 255,255,255 255,255,255 255,255,255 117,117,117 113,113,113 59,59,59 59,59,59 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 137,137,137 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 131,131,131 144,144,144 255,255,255 255,255,255 109,109,109 59,59,59 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 138,138,138 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +59,59,59 255,255,255 255,255,255 255,255,255 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 255,255,255 66,66,66 59,59,59 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 131,131,131 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 142,142,142 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 255,255,255 137,137,137 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 112,112,112 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 133,133,133 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 107,107,107 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 144,144,144 114,114,114 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 61,61,61 59,59,59 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 97,97,97 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 67,67,67 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 75,75,75 114,114,114 255,255,255 106,106,106 255,255,255 105,105,105 255,255,255 255,255,255 118,118,118 119,119,119 255,255,255 255,255,255 255,255,255 144,144,144 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 71,71,71 59,59,59 66,66,66 59,59,59 255,255,255 255,255,255 150,150,150 255,255,255 255,255,255 255,255,255 77,77,77 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 59,59,59 59,59,59 59,59,59 59,59,59 134,134,134 111,111,111 255,255,255 255,255,255 59,59,59 117,117,117 255,255,255 255,255,255 136,136,136 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 125,125,125 84,84,84 78,78,78 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 122,122,122 74,74,74 59,59,59 61,61,61 255,255,255 255,255,255 255,255,255 99,99,99 59,59,59 59,59,59 59,59,59 59,59,59 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 150,150,150 91,91,91 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 80,80,80 90,90,90 90,90,90 91,91,91 85,85,85 60,60,60 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 59,59,59 59,59,59 59,59,59 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 97,97,97 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 94,94,94 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 91,91,91 66,66,66 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 134,134,134 97,97,97 91,91,91 91,91,91 92,92,92 110,110,110 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 90,90,90 89,89,89 88,88,88 78,78,78 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_binaried.txt new file mode 100644 index 0000000..eb0652d --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_binaried.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_greied.txt new file mode 100644 index 0000000..629b8e7 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_greied.txt @@ -0,0 +1,30 @@ +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 205,205,205 210,210,210 213,213,213 206,206,206 205,205,205 206,206,206 218,218,218 218,218,218 206,206,206 205,205,205 206,206,206 205,205,205 205,205,205 208,208,208 209,209,209 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 59,59,59 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 59,59,59 205,205,205 212,212,212 210,210,210 205,205,205 205,205,205 209,209,209 221,221,221 215,215,215 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 210,210,210 208,208,208 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 208,208,208 209,209,209 205,205,205 205,205,205 205,205,205 215,215,215 225,225,225 208,208,208 202,202,202 206,206,206 219,219,219 214,214,214 206,206,206 207,207,207 206,206,206 204,204,204 216,216,216 226,226,226 215,215,215 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 210,210,210 208,208,208 204,204,204 205,205,205 205,205,205 220,220,220 219,219,219 204,204,204 203,203,203 210,210,210 220,220,220 211,211,211 206,206,206 207,207,207 204,204,204 208,208,208 223,223,223 224,224,224 211,211,211 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 209,209,209 207,207,207 204,204,204 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 214,214,214 224,224,224 221,221,221 211,211,211 205,205,205 205,205,205 207,207,207 211,211,211 218,218,218 219,219,219 219,219,219 219,219,219 219,219,219 220,220,220 222,222,222 216,216,216 213,213,213 211,211,211 203,203,203 204,204,204 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 219,219,219 225,225,225 218,218,218 208,208,208 205,205,205 205,205,205 208,208,208 215,215,215 218,218,218 218,218,218 219,219,219 219,219,219 219,219,219 221,221,221 221,221,221 214,214,214 213,213,213 207,207,207 203,203,203 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 208,208,208 222,222,222 223,223,223 216,216,216 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 205,205,205 206,206,206 205,205,205 208,208,208 213,213,213 210,210,210 204,204,204 207,207,207 219,219,219 223,223,223 218,218,218 219,219,219 219,219,219 218,218,218 213,213,213 208,208,208 212,212,212 224,224,224 221,221,221 207,207,207 213,213,213 212,212,212 207,207,207 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 210,210,210 214,214,214 208,208,208 204,204,204 210,210,210 224,224,224 221,221,221 218,218,218 220,220,220 219,219,219 217,217,217 213,213,213 208,208,208 215,215,215 225,225,225 213,213,213 209,209,209 213,213,213 210,210,210 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 212,212,212 213,213,213 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 202,202,202 203,203,203 203,203,203 209,209,209 227,227,227 219,219,219 214,214,214 224,224,224 214,214,214 214,214,214 224,224,224 221,221,221 199,199,199 118,118,118 98,98,98 109,109,109 141,141,141 217,217,217 208,208,208 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 204,204,204 203,203,203 204,204,204 194,194,194 176,176,176 153,153,153 116,116,116 108,108,108 89,89,89 138,138,138 216,216,216 226,226,226 217,217,217 202,202,202 168,168,168 105,105,105 82,82,82 162,162,162 215,215,215 206,206,206 205,205,205 205,205,205 205,205,205 204,204,204 101,101,101 88,88,88 174,174,174 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 203,203,203 203,203,203 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 210,210,210 219,219,219 218,218,218 213,213,213 206,206,206 214,214,214 223,223,223 223,223,223 220,220,220 212,212,212 213,213,213 225,225,225 221,221,221 111,111,111 130,130,130 227,227,227 204,204,204 104,104,104 204,204,204 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 194,194,194 162,162,162 139,139,139 110,110,110 98,98,98 108,108,108 137,137,137 174,174,174 210,210,210 222,222,222 161,161,161 117,117,117 149,149,149 226,226,226 176,176,176 90,90,90 137,137,137 206,206,206 116,116,116 59,59,59 120,120,120 206,206,206 206,206,206 205,205,205 205,205,205 128,128,128 131,131,131 143,143,143 68,68,68 151,151,151 205,205,205 205,205,205 206,206,206 206,206,206 216,216,216 219,219,219 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 167,167,167 90,90,90 107,107,107 109,109,109 110,110,110 110,110,110 196,196,196 211,211,211 215,215,215 204,204,204 175,175,175 178,178,178 187,187,187 202,202,202 216,216,216 218,218,218 218,218,218 215,215,215 194,194,194 110,110,110 152,152,152 218,218,218 156,156,156 148,148,148 207,207,207 133,133,133 84,84,84 103,103,103 107,107,107 137,137,137 59,59,59 205,205,205 205,205,205 205,205,205 205,205,205 117,117,117 103,103,103 137,137,137 169,169,169 202,202,202 216,216,216 212,212,212 204,204,204 204,204,204 209,209,209 213,213,213 187,187,187 153,153,153 107,107,107 214,214,214 160,160,160 128,128,128 224,224,224 212,212,212 187,187,187 59,59,59 59,59,59 182,182,182 205,205,205 205,205,205 168,168,168 88,88,88 204,204,204 205,205,205 183,183,183 61,61,61 153,153,153 205,205,205 205,205,205 205,205,205 210,210,210 214,214,214 +206,206,206 205,205,205 205,205,205 204,204,204 203,203,203 204,204,204 103,103,103 145,145,145 204,204,204 204,204,204 165,165,165 101,101,101 101,101,101 205,205,205 204,204,204 130,130,130 103,103,103 109,109,109 86,86,86 67,67,67 201,201,201 205,205,205 202,202,202 206,206,206 156,156,156 153,153,153 129,129,129 204,204,204 110,110,110 198,198,198 194,194,194 138,138,138 147,147,147 205,205,205 205,205,205 102,102,102 203,203,203 204,204,204 206,206,206 204,204,204 204,204,204 125,125,125 155,155,155 205,205,205 205,205,205 204,204,204 204,204,204 209,209,209 217,217,217 217,217,217 196,196,196 167,167,167 135,135,135 101,101,101 96,96,96 209,209,209 219,219,219 91,91,91 192,192,192 204,204,204 216,216,216 105,105,105 59,59,59 130,130,130 206,206,206 198,198,198 80,80,80 181,181,181 203,203,203 205,205,205 156,156,156 59,59,59 67,67,67 202,202,202 204,204,204 205,205,205 205,205,205 204,204,204 +206,206,206 205,205,205 209,209,209 216,216,216 221,221,221 230,230,230 79,79,79 216,216,216 230,230,230 213,213,213 146,146,146 177,177,177 83,83,83 206,206,206 204,204,204 106,106,106 188,188,188 214,214,214 207,207,207 74,74,74 174,174,174 205,205,205 214,214,214 219,219,219 117,117,117 159,159,159 162,162,162 205,205,205 91,91,91 206,206,206 152,152,152 117,117,117 187,187,187 205,205,205 210,210,210 135,135,135 223,223,223 232,232,232 232,232,232 235,235,235 218,218,218 174,174,174 87,87,87 206,206,206 197,197,197 189,189,189 195,195,195 216,216,216 218,218,218 130,130,130 63,63,63 59,59,59 59,59,59 61,61,61 100,100,100 216,216,216 205,205,205 157,157,157 117,117,117 205,205,205 205,205,205 166,166,166 59,59,59 81,81,81 205,205,205 115,115,115 144,144,144 218,218,218 228,228,228 215,215,215 71,71,71 59,59,59 120,120,120 218,218,218 219,219,219 207,207,207 205,205,205 206,206,206 +205,205,205 203,203,203 230,230,230 249,249,249 227,227,227 221,221,221 89,89,89 215,215,215 217,217,217 227,227,227 123,123,123 234,234,234 87,87,87 204,204,204 205,205,205 83,83,83 197,197,197 204,204,204 205,205,205 77,77,77 145,145,145 207,207,207 219,219,219 214,214,214 115,115,115 130,130,130 59,59,59 59,59,59 78,78,78 119,119,119 96,96,96 105,105,105 205,205,205 205,205,205 240,240,240 185,185,185 229,229,229 242,242,242 225,225,225 215,215,215 221,221,221 230,230,230 72,72,72 59,59,59 59,59,59 59,59,59 71,71,71 197,197,197 204,204,204 168,168,168 90,90,90 171,171,171 116,116,116 208,208,208 222,222,222 214,214,214 204,204,204 206,206,206 89,89,89 186,186,186 205,205,205 205,205,205 83,83,83 59,59,59 132,132,132 97,97,97 249,249,249 235,235,235 237,237,237 102,102,102 59,59,59 88,88,88 218,218,218 234,234,234 245,245,245 236,236,236 204,204,204 206,206,206 +205,205,205 205,205,205 210,210,210 223,223,223 213,213,213 175,175,175 138,138,138 230,230,230 230,230,230 233,233,233 108,108,108 157,157,157 118,118,118 205,205,205 204,204,204 78,78,78 205,205,205 206,206,206 206,206,206 110,110,110 116,116,116 205,205,205 205,205,205 158,158,158 146,146,146 129,129,129 205,205,205 205,205,205 205,205,205 178,178,178 105,105,105 141,141,141 206,206,206 204,204,204 213,213,213 195,195,195 217,217,217 243,243,243 233,233,233 229,229,229 232,232,232 234,234,234 176,176,176 65,65,65 59,59,59 59,59,59 59,59,59 146,146,146 205,205,205 204,204,204 66,66,66 187,187,187 110,110,110 205,205,205 205,205,205 204,204,204 205,205,205 205,205,205 162,162,162 112,112,112 205,205,205 205,205,205 146,146,146 59,59,59 71,71,71 191,191,191 219,219,219 218,218,218 140,140,140 59,59,59 71,71,71 207,207,207 233,233,233 233,233,233 232,232,232 219,219,219 205,205,205 206,206,206 +206,206,206 205,205,205 205,205,205 204,204,204 204,204,204 118,118,118 165,165,165 209,209,209 205,205,205 205,205,205 112,112,112 75,75,75 79,79,79 85,85,85 94,94,94 95,95,95 205,205,205 205,205,205 196,196,196 143,143,143 94,94,94 204,204,204 204,204,204 109,109,109 147,147,147 160,160,160 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 204,204,204 127,127,127 193,193,193 207,207,207 210,210,210 206,206,206 203,203,203 59,59,59 204,204,204 183,183,183 124,124,124 163,163,163 164,164,164 100,100,100 205,205,205 206,206,206 106,106,106 59,59,59 105,105,105 204,204,204 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 93,93,93 194,194,194 205,205,205 201,201,201 82,82,82 170,170,170 205,205,205 204,204,204 156,156,156 59,59,59 64,64,64 175,175,175 206,206,206 204,204,204 205,205,205 203,203,203 204,204,204 206,206,206 206,206,206 +205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 83,83,83 196,196,196 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 190,190,190 186,186,186 206,206,206 207,207,207 179,179,179 165,165,165 93,93,93 211,211,211 212,212,212 80,80,80 80,80,80 61,61,61 88,88,88 118,118,118 144,144,144 176,176,176 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 181,181,181 103,103,103 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 74,74,74 204,204,204 206,206,206 148,148,148 110,110,110 122,122,122 186,186,186 211,211,211 205,205,205 205,205,205 205,205,205 205,205,205 158,158,158 137,137,137 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 175,175,175 65,65,65 61,61,61 162,162,162 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 206,206,206 205,205,205 +205,205,205 205,205,205 205,205,205 205,205,205 197,197,197 87,87,87 205,205,205 205,205,205 205,205,205 205,205,205 192,192,192 196,196,196 205,205,205 204,204,204 205,205,205 204,204,204 216,216,216 226,226,226 158,158,158 160,160,160 102,102,102 223,223,223 218,218,218 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 80,80,80 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 124,124,124 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 204,204,204 206,206,206 110,110,110 187,187,187 218,218,218 192,192,192 59,59,59 150,150,150 162,162,162 213,213,213 203,203,203 204,204,204 204,204,204 206,206,206 212,212,212 99,99,99 211,211,211 205,205,205 205,205,205 205,205,205 167,167,167 65,65,65 59,59,59 157,157,157 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 204,204,204 205,205,205 +205,205,205 205,205,205 205,205,205 205,205,205 170,170,170 118,118,118 205,205,205 205,205,205 205,205,205 160,160,160 59,59,59 59,59,59 59,59,59 76,76,76 103,103,103 180,180,180 208,208,208 212,212,212 134,134,134 147,147,147 134,134,134 217,217,217 217,217,217 186,186,186 111,111,111 66,66,66 59,59,59 59,59,59 59,59,59 59,59,59 66,66,66 205,205,205 205,205,205 141,141,141 78,78,78 161,161,161 150,150,150 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 218,218,218 220,220,220 211,211,211 207,207,207 152,152,152 148,148,148 210,210,210 208,208,208 91,91,91 160,160,160 129,129,129 216,216,216 216,216,216 217,217,217 214,214,214 211,211,211 221,221,221 96,96,96 205,205,205 205,205,205 205,205,205 205,205,205 121,121,121 59,59,59 121,121,121 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 208,208,208 221,221,221 217,217,217 209,209,209 +205,205,205 205,205,205 205,205,205 205,205,205 146,146,146 151,151,151 205,205,205 205,205,205 205,205,205 117,117,117 113,113,113 59,59,59 59,59,59 59,59,59 59,59,59 177,177,177 205,205,205 211,211,211 137,137,137 129,129,129 168,168,168 219,219,219 217,217,217 213,213,213 212,212,212 216,216,216 192,192,192 154,154,154 94,94,94 131,131,131 144,144,144 205,205,205 205,205,205 109,109,109 59,59,59 67,67,67 198,198,198 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 209,209,209 217,217,217 220,220,220 209,209,209 183,183,183 118,118,118 217,217,217 223,223,223 138,138,138 152,152,152 106,106,106 216,216,216 213,213,213 213,213,213 222,222,222 222,222,222 208,208,208 88,88,88 206,206,206 206,206,206 206,206,206 205,205,205 102,102,102 59,59,59 160,160,160 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 212,212,212 220,220,220 219,219,219 +59,59,59 205,205,205 205,205,205 205,205,205 126,126,126 180,180,180 205,205,205 205,205,205 205,205,205 101,101,101 204,204,204 66,66,66 59,59,59 59,59,59 59,59,59 198,198,198 209,209,209 227,227,227 131,131,131 103,103,103 206,206,206 219,219,219 219,219,219 222,222,222 214,214,214 204,204,204 217,217,217 226,226,226 145,145,145 220,220,220 142,142,142 209,209,209 205,205,205 84,84,84 178,178,178 185,185,185 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 204,204,204 203,203,203 205,205,205 203,203,203 100,100,100 226,226,226 210,210,210 177,177,177 137,137,137 94,94,94 220,220,220 222,222,222 211,211,211 206,206,206 223,223,223 219,219,219 84,84,84 222,222,222 217,217,217 206,206,206 205,205,205 84,84,84 59,59,59 168,168,168 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 203,203,203 204,204,204 +205,205,205 205,205,205 205,205,205 205,205,205 103,103,103 203,203,203 205,205,205 205,205,205 196,196,196 119,119,119 186,186,186 112,112,112 192,192,192 167,167,167 83,83,83 207,207,207 206,206,206 220,220,220 133,133,133 100,100,100 219,219,219 207,207,207 208,208,208 224,224,224 223,223,223 204,204,204 213,213,213 225,225,225 168,168,168 203,203,203 123,123,123 206,206,206 199,199,199 90,90,90 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 170,170,170 99,99,99 96,96,96 196,196,196 210,210,210 212,212,212 210,210,210 206,206,206 96,96,96 225,225,225 220,220,220 211,211,211 107,107,107 95,95,95 210,210,210 226,226,226 220,220,220 202,202,202 219,219,219 222,222,222 82,82,82 207,207,207 207,207,207 205,205,205 206,206,206 70,70,70 59,59,59 174,174,174 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 211,211,211 212,212,212 +205,205,205 205,205,205 205,205,205 205,205,205 95,95,95 205,205,205 205,205,205 205,205,205 156,156,156 158,158,158 142,142,142 158,158,158 209,209,209 196,196,196 102,102,102 217,217,217 204,204,204 193,193,193 144,144,144 114,114,114 220,220,220 220,220,220 222,222,222 221,221,221 211,211,211 210,210,210 222,222,222 192,192,192 206,206,206 172,172,172 146,146,146 205,205,205 174,174,174 125,125,125 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 170,170,170 83,83,83 61,61,61 59,59,59 80,80,80 189,189,189 220,220,220 221,221,221 214,214,214 101,101,101 207,207,207 216,216,216 220,220,220 97,97,97 100,100,100 222,222,222 219,219,219 210,210,210 212,212,212 225,225,225 217,217,217 81,81,81 206,206,206 204,204,204 205,205,205 205,205,205 67,67,67 59,59,59 184,184,184 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 214,214,214 219,219,219 +205,205,205 205,205,205 205,205,205 205,205,205 107,107,107 75,75,75 114,114,114 153,153,153 106,106,106 181,181,181 105,105,105 200,200,200 205,205,205 118,118,118 119,119,119 205,205,205 207,207,207 180,180,180 144,144,144 136,136,136 206,206,206 208,208,208 207,207,207 208,208,208 219,219,219 223,223,223 218,218,218 185,185,185 210,210,210 147,147,147 186,186,186 205,205,205 147,147,147 168,168,168 205,205,205 205,205,205 205,205,205 203,203,203 194,194,194 81,81,81 188,188,188 169,169,169 71,71,71 59,59,59 66,66,66 59,59,59 204,204,204 173,173,173 150,150,150 210,210,210 204,204,204 205,205,205 77,77,77 122,122,122 206,206,206 211,211,211 222,222,222 222,222,222 214,214,214 205,205,205 83,83,83 224,224,224 212,212,212 204,204,204 205,205,205 63,63,63 59,59,59 197,197,197 204,204,204 203,203,203 203,203,203 203,203,203 204,204,204 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 +206,206,206 205,205,205 59,59,59 206,206,206 163,163,163 59,59,59 59,59,59 59,59,59 59,59,59 134,134,134 111,111,111 204,204,204 205,205,205 59,59,59 117,117,117 185,185,185 205,205,205 136,136,136 148,148,148 170,170,170 205,205,205 204,204,204 207,207,207 212,212,212 209,209,209 206,206,206 204,204,204 195,195,195 205,205,205 112,112,112 210,210,210 205,205,205 122,122,122 204,204,204 204,204,204 207,207,207 212,212,212 220,220,220 206,206,206 109,109,109 212,212,212 206,206,206 195,195,195 125,125,125 84,84,84 78,78,78 107,107,107 166,166,166 223,223,223 216,216,216 206,206,206 175,175,175 61,61,61 183,183,183 209,209,209 212,212,212 207,207,207 206,206,206 205,205,205 205,205,205 81,81,81 213,213,213 210,210,210 205,205,205 196,196,196 59,59,59 63,63,63 207,207,207 215,215,215 222,222,222 224,224,224 223,223,223 209,209,209 207,207,207 208,208,208 204,204,204 206,206,206 206,206,206 +206,206,206 203,203,203 223,223,223 241,241,241 231,231,231 185,185,185 122,122,122 74,74,74 59,59,59 61,61,61 176,176,176 238,238,238 210,210,210 99,99,99 59,59,59 59,59,59 59,59,59 59,59,59 119,119,119 202,202,202 205,205,205 206,206,206 222,222,222 223,223,223 207,207,207 205,205,205 205,205,205 190,190,190 150,150,150 91,91,91 177,177,177 198,198,198 100,100,100 205,205,205 232,232,232 238,238,238 233,233,233 240,240,240 229,229,229 161,161,161 145,145,145 229,229,229 237,237,237 232,232,232 205,205,205 205,205,205 206,206,206 208,208,208 207,207,207 204,204,204 169,169,169 79,79,79 157,157,157 210,210,210 225,225,225 219,219,219 205,205,205 205,205,205 206,206,206 206,206,206 80,80,80 90,90,90 90,90,90 91,91,91 85,85,85 60,60,60 80,80,80 235,235,235 239,239,239 236,236,236 224,224,224 224,224,224 219,219,219 232,232,232 239,239,239 225,225,225 204,204,204 206,206,206 +205,205,205 204,204,204 219,219,219 237,237,237 216,216,216 247,247,247 237,237,237 223,223,223 197,197,197 163,163,163 227,227,227 245,245,245 213,213,213 179,179,179 61,61,61 59,59,59 59,59,59 59,59,59 105,105,105 206,206,206 205,205,205 206,206,206 210,210,210 208,208,208 205,205,205 205,205,205 205,205,205 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 102,102,102 205,205,205 227,227,227 232,232,232 221,221,221 249,249,249 231,231,231 223,223,223 167,167,167 128,128,128 205,205,205 241,241,241 207,207,207 205,205,205 205,205,205 191,191,191 153,153,153 101,101,101 106,106,106 181,181,181 205,205,205 206,206,206 210,210,210 207,207,207 206,206,206 206,206,206 205,205,205 205,205,205 115,115,115 195,195,195 206,206,206 206,206,206 205,205,205 108,108,108 97,97,97 226,226,226 238,238,238 243,243,243 226,226,226 224,224,224 236,236,236 234,234,234 242,242,242 232,232,232 204,204,204 206,206,206 +206,206,206 206,206,206 204,204,204 206,206,206 207,207,207 215,215,215 221,221,221 219,219,219 213,213,213 212,212,212 214,214,214 207,207,207 205,205,205 206,206,206 166,166,166 119,119,119 94,94,94 79,79,79 170,170,170 205,205,205 205,205,205 205,205,205 204,204,204 205,205,205 205,205,205 205,205,205 205,205,205 170,170,170 121,121,121 91,91,91 66,66,66 94,94,94 199,199,199 205,205,205 204,204,204 207,207,207 208,208,208 218,218,218 222,222,222 217,217,217 211,211,211 200,200,200 134,134,134 97,97,97 91,91,91 91,91,91 92,92,92 110,110,110 148,148,148 192,192,192 205,205,205 206,206,206 205,205,205 205,205,205 204,204,204 205,205,205 205,205,205 206,206,206 206,206,206 205,205,205 162,162,162 86,86,86 90,90,90 89,89,89 88,88,88 78,78,78 132,132,132 207,207,207 212,212,212 221,221,221 219,219,219 214,214,214 211,211,211 215,215,215 211,211,211 205,205,205 205,205,205 206,206,206 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 203,203,203 203,203,203 204,204,204 205,205,205 204,204,204 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 204,204,204 205,205,205 206,206,206 205,205,205 206,206,206 207,207,207 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 203,203,203 204,204,204 204,204,204 204,204,204 204,204,204 205,205,205 206,206,206 205,205,205 205,205,205 206,206,206 204,204,204 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 207,207,207 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 204,204,204 205,205,205 206,206,206 205,205,205 206,206,206 206,206,206 205,205,205 205,205,205 204,204,204 203,203,203 203,203,203 204,204,204 204,204,204 204,204,204 204,204,204 205,205,205 205,205,205 205,205,205 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 205,205,205 204,204,204 205,205,205 205,205,205 205,205,205 213,213,213 219,219,219 207,207,207 205,205,205 207,207,207 59,59,59 219,219,219 204,204,204 204,204,204 205,205,205 205,205,205 206,206,206 213,213,213 212,212,212 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 204,204,204 205,205,205 205,205,205 205,205,205 216,216,216 214,214,214 205,205,205 205,205,205 211,211,211 224,224,224 216,216,216 204,204,204 205,205,205 205,205,205 205,205,205 209,209,209 216,216,216 210,210,210 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 205,205,205 205,205,205 +205,205,205 205,205,205 59,59,59 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 206,206,206 211,211,211 214,214,214 207,207,207 205,205,205 204,204,204 213,213,213 221,221,221 208,208,208 205,205,205 209,209,209 218,218,218 214,214,214 210,210,210 210,210,210 209,209,209 204,204,204 218,218,218 225,225,225 213,213,213 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 213,213,213 213,213,213 206,206,206 205,205,205 206,206,206 217,217,217 215,215,215 204,204,204 206,206,206 211,211,211 218,218,218 212,212,212 210,210,210 210,210,210 207,207,207 209,209,209 224,224,224 222,222,222 209,209,209 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 207,207,207 215,215,215 210,210,210 205,205,205 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 59,59,59 205,205,205 212,212,212 222,222,222 222,222,222 212,212,212 204,204,204 205,205,205 206,206,206 215,215,215 221,221,221 220,220,220 218,218,218 218,218,218 218,218,218 219,219,219 224,224,224 221,221,221 212,212,212 206,206,206 203,203,203 204,204,204 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 215,215,215 223,223,223 221,221,221 210,210,210 205,205,205 205,205,205 211,211,211 219,219,219 221,221,221 219,219,219 219,219,219 219,219,219 217,217,217 219,219,219 224,224,224 218,218,218 209,209,209 204,204,204 203,203,203 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 207,207,207 218,218,218 223,223,223 218,218,218 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 206,206,206 210,210,210 208,208,208 205,205,205 207,207,207 223,223,223 222,222,222 215,215,215 220,220,220 220,220,220 220,220,220 217,217,217 209,209,209 207,207,207 222,222,222 223,223,223 210,210,210 217,217,217 216,216,216 208,208,208 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 206,206,206 210,210,210 207,207,207 204,204,204 212,212,212 226,226,226 216,216,216 216,216,216 221,221,221 219,219,219 219,219,219 215,215,215 207,207,207 210,210,210 225,225,225 215,215,215 213,213,213 218,218,218 215,215,215 206,206,206 206,206,206 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 204,204,204 208,208,208 209,209,209 +205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 208,208,208 225,225,225 219,219,219 216,216,216 224,224,224 211,211,211 211,211,211 224,224,224 223,223,223 204,204,204 214,214,214 227,227,227 212,212,212 212,212,212 213,213,213 59,59,59 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 204,204,204 214,214,214 226,226,226 213,213,213 219,219,219 221,221,221 209,209,209 212,212,212 227,227,227 219,219,219 204,204,204 220,220,220 220,220,220 209,209,209 214,214,214 212,212,212 207,207,207 206,206,206 205,205,205 206,206,206 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 205,205,205 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_noised.txt new file mode 100644 index 0000000..6f3af7e --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_noised.txt @@ -0,0 +1,30 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 98,98,98 109,109,109 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 116,116,116 108,108,108 89,89,89 138,138,138 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 105,105,105 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 130,130,130 255,255,255 255,255,255 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 110,110,110 98,98,98 108,108,108 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 149,149,149 255,255,255 255,255,255 90,90,90 137,137,137 255,255,255 116,116,116 59,59,59 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 131,131,131 143,143,143 68,68,68 151,151,151 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 107,107,107 109,109,109 110,110,110 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 148,148,148 255,255,255 133,133,133 84,84,84 103,103,103 107,107,107 137,137,137 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 103,103,103 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 255,255,255 255,255,255 255,255,255 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 145,145,145 255,255,255 255,255,255 255,255,255 101,101,101 101,101,101 255,255,255 255,255,255 130,130,130 103,103,103 109,109,109 86,86,86 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 129,129,129 255,255,255 110,110,110 255,255,255 255,255,255 138,138,138 147,147,147 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 135,135,135 101,101,101 96,96,96 255,255,255 255,255,255 91,91,91 255,255,255 255,255,255 255,255,255 105,105,105 59,59,59 130,130,130 255,255,255 255,255,255 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 83,83,83 255,255,255 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 91,91,91 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 135,135,135 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 130,130,130 63,63,63 59,59,59 59,59,59 61,61,61 100,100,100 255,255,255 255,255,255 255,255,255 117,117,117 255,255,255 255,255,255 255,255,255 59,59,59 81,81,81 255,255,255 115,115,115 144,144,144 255,255,255 255,255,255 255,255,255 71,71,71 59,59,59 120,120,120 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 87,87,87 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 77,77,77 145,145,145 255,255,255 255,255,255 255,255,255 115,115,115 130,130,130 59,59,59 59,59,59 78,78,78 119,119,119 96,96,96 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 59,59,59 59,59,59 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 90,90,90 255,255,255 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 255,255,255 255,255,255 255,255,255 83,83,83 59,59,59 132,132,132 97,97,97 255,255,255 255,255,255 255,255,255 102,102,102 59,59,59 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 138,138,138 255,255,255 255,255,255 255,255,255 108,108,108 255,255,255 118,118,118 255,255,255 255,255,255 78,78,78 255,255,255 255,255,255 255,255,255 110,110,110 116,116,116 255,255,255 255,255,255 255,255,255 146,146,146 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 105,105,105 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 146,146,146 255,255,255 255,255,255 66,66,66 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 146,146,146 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 140,140,140 59,59,59 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 75,75,75 79,79,79 85,85,85 94,94,94 95,95,95 255,255,255 255,255,255 255,255,255 143,143,143 94,94,94 255,255,255 255,255,255 109,109,109 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 127,127,127 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 106,106,106 59,59,59 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 64,64,64 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 255,255,255 255,255,255 80,80,80 80,80,80 61,61,61 88,88,88 118,118,118 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 255,255,255 255,255,255 148,148,148 110,110,110 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 137,137,137 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 59,59,59 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 110,110,110 255,255,255 255,255,255 255,255,255 59,59,59 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 59,59,59 59,59,59 76,76,76 103,103,103 255,255,255 255,255,255 255,255,255 134,134,134 147,147,147 134,134,134 255,255,255 255,255,255 255,255,255 111,111,111 66,66,66 59,59,59 59,59,59 59,59,59 59,59,59 66,66,66 255,255,255 255,255,255 141,141,141 78,78,78 255,255,255 150,150,150 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 148,148,148 255,255,255 255,255,255 91,91,91 255,255,255 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 59,59,59 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 151,151,151 255,255,255 255,255,255 255,255,255 117,117,117 113,113,113 59,59,59 59,59,59 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 137,137,137 129,129,129 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 131,131,131 144,144,144 255,255,255 255,255,255 109,109,109 59,59,59 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 118,118,118 255,255,255 255,255,255 138,138,138 255,255,255 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 102,102,102 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 255,255,255 66,66,66 59,59,59 59,59,59 59,59,59 255,255,255 255,255,255 255,255,255 131,131,131 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 142,142,142 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 255,255,255 137,137,137 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 255,255,255 112,112,112 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 133,133,133 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 123,123,123 255,255,255 255,255,255 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 255,255,255 255,255,255 255,255,255 107,107,107 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 255,255,255 255,255,255 102,102,102 255,255,255 255,255,255 255,255,255 144,144,144 114,114,114 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 255,255,255 255,255,255 125,125,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 61,61,61 59,59,59 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 255,255,255 255,255,255 255,255,255 97,97,97 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 67,67,67 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 107,107,107 75,75,75 114,114,114 255,255,255 106,106,106 255,255,255 105,105,105 255,255,255 255,255,255 118,118,118 119,119,119 255,255,255 255,255,255 255,255,255 144,144,144 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 71,71,71 59,59,59 66,66,66 59,59,59 255,255,255 255,255,255 150,150,150 255,255,255 255,255,255 255,255,255 77,77,77 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 59,59,59 59,59,59 59,59,59 134,134,134 111,111,111 255,255,255 255,255,255 59,59,59 117,117,117 255,255,255 255,255,255 136,136,136 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 255,255,255 255,255,255 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 109,109,109 255,255,255 255,255,255 255,255,255 125,125,125 84,84,84 78,78,78 107,107,107 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 122,122,122 74,74,74 59,59,59 61,61,61 255,255,255 255,255,255 255,255,255 99,99,99 59,59,59 59,59,59 59,59,59 59,59,59 119,119,119 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 150,150,150 91,91,91 255,255,255 255,255,255 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 80,80,80 90,90,90 90,90,90 91,91,91 85,85,85 60,60,60 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 59,59,59 59,59,59 59,59,59 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 59,59,59 59,59,59 59,59,59 59,59,59 102,102,102 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 128,128,128 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 255,255,255 255,255,255 255,255,255 255,255,255 108,108,108 97,97,97 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 119,119,119 94,94,94 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 121,121,121 91,91,91 66,66,66 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 134,134,134 97,97,97 91,91,91 91,91,91 92,92,92 110,110,110 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 86,86,86 90,90,90 89,89,89 88,88,88 78,78,78 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_original.txt new file mode 100644 index 0000000..02f5ddb --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/79_original.txt @@ -0,0 +1,30 @@ +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,220,163 248,220,163 248,220,163 251,220,161 253,220,159 246,222,160 246,222,160 248,220,161 207,228,176 176,236,184 235,222,166 254,220,159 228,223,167 132,241,206 132,242,204 247,220,164 248,221,159 251,221,160 244,222,160 253,218,162 218,226,171 214,226,174 246,220,161 249,221,159 247,221,161 247,221,161 247,221,161 247,221,161 0,100,0 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 246,221,161 252,220,159 249,221,159 245,222,161 0,100,0 245,221,160 193,232,180 202,229,178 248,221,160 250,221,158 211,227,174 113,245,214 165,235,194 253,220,158 250,221,160 248,221,161 251,220,160 235,222,165 205,229,176 226,225,169 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,221,160 251,220,159 250,220,160 246,221,161 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 249,220,163 245,220,163 244,220,164 216,226,171 211,227,174 249,221,158 250,221,158 249,220,160 166,236,195 77,252,227 213,226,172 255,218,154 229,223,167 124,244,205 162,235,194 236,222,165 235,223,166 242,223,160 254,218,160 159,239,193 67,254,230 163,237,193 249,220,160 249,220,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 246,221,162 212,227,176 216,226,172 255,217,161 246,221,160 243,221,160 117,245,211 134,243,205 255,219,158 255,219,155 207,228,177 114,246,210 192,230,183 240,222,165 237,223,166 252,219,159 226,225,168 93,249,221 82,251,226 198,230,179 251,219,161 247,221,161 248,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 238,223,163 206,228,176 228,223,169 254,221,155 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 247,221,161 244,221,162 251,218,162 167,235,192 76,253,224 117,246,212 202,229,180 250,222,157 245,220,164 234,222,169 198,231,178 133,241,205 129,243,207 124,243,207 134,241,207 125,244,205 117,244,213 99,248,218 152,238,198 177,233,189 195,230,182 251,220,155 254,220,157 249,220,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,221,160 242,221,163 135,243,203 81,251,228 135,242,203 220,226,169 250,220,160 239,222,162 219,224,173 163,236,193 127,242,207 124,243,206 124,244,205 131,242,207 125,242,209 111,245,215 105,248,212 166,234,195 179,234,187 228,224,167 255,218,156 251,220,160 248,221,161 247,221,161 248,221,161 248,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 250,220,160 225,225,169 112,248,213 85,250,223 158,238,195 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 246,222,160 246,222,161 249,220,162 247,223,158 249,219,162 216,226,172 174,234,188 198,229,178 255,219,159 233,223,166 125,243,207 80,250,225 130,241,207 123,244,208 124,244,207 134,242,202 171,233,191 218,226,171 188,230,186 72,252,228 113,246,212 222,224,171 183,233,185 192,230,185 235,224,164 249,221,160 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,221,161 241,222,160 203,229,177 172,234,191 221,226,168 255,219,157 200,229,178 85,250,226 109,247,213 131,240,207 118,243,213 128,243,206 141,241,200 180,233,186 223,225,171 159,236,195 72,253,228 178,233,187 212,227,173 180,232,190 197,230,178 237,221,167 245,220,163 249,221,160 247,221,160 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,160 235,224,163 194,230,184 178,234,187 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,162 247,221,161 246,221,161 253,220,158 255,217,156 255,218,155 255,220,153 210,226,176 64,255,233 123,242,209 161,235,195 75,253,224 165,235,192 163,235,194 77,252,226 107,246,216 244,216,150 61,152,75 14,136,55 56,143,63 78,172,105 145,240,201 222,224,173 249,220,161 247,220,163 248,220,163 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,221,161 254,220,156 255,218,155 255,220,154 240,211,144 119,202,148 32,187,132 72,149,69 38,145,64 15,128,41 95,168,97 141,239,201 65,254,231 146,240,199 252,216,157 71,198,147 33,142,60 27,120,29 88,191,133 156,239,192 239,219,169 250,220,160 247,221,160 245,221,162 245,220,159 71,135,46 50,124,32 194,195,126 247,221,161 247,221,161 247,221,161 248,221,162 253,219,162 255,219,155 255,219,153 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 251,220,160 205,229,176 124,244,207 133,241,205 185,233,185 236,222,164 174,236,186 94,248,222 93,249,221 120,245,209 181,233,184 179,231,191 78,253,224 113,245,214 90,143,56 70,163,89 50,255,238 182,225,172 82,137,49 253,220,155 250,219,164 247,220,163 246,220,163 245,221,163 246,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 227,212,147 178,185,113 94,169,97 39,146,66 36,135,50 66,142,58 119,165,89 87,204,149 79,238,205 101,247,219 83,191,132 74,149,70 90,179,114 66,254,231 113,203,146 55,126,34 48,171,106 93,233,197 100,146,64 0,100,0 107,150,68 245,222,161 246,222,160 248,221,161 246,221,161 116,157,76 122,160,79 143,170,93 17,108,11 155,176,101 247,221,161 246,221,161 249,221,161 241,222,162 157,237,198 123,244,207 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 182,189,119 54,126,35 83,140,54 85,141,55 87,142,57 87,142,56 211,217,152 189,231,182 162,236,195 166,226,177 197,195,128 210,198,127 211,205,144 180,223,172 156,238,196 131,242,204 135,242,203 156,238,194 156,217,165 48,145,66 39,187,127 131,242,205 137,182,114 104,177,108 233,224,165 126,161,82 44,121,29 75,137,49 81,140,53 132,164,86 0,100,0 247,221,161 247,221,160 247,221,161 247,221,161 99,148,64 75,137,49 131,165,86 165,192,127 171,223,174 158,238,195 197,231,181 255,220,154 252,219,158 217,227,172 177,234,188 122,213,162 77,184,121 41,143,61 163,235,193 117,187,125 50,162,90 81,252,222 192,230,184 160,211,152 1,101,1 1,100,1 210,201,137 248,220,163 248,220,163 184,189,121 50,124,32 245,220,159 247,221,161 210,202,136 5,102,3 159,178,103 247,221,161 248,220,162 245,221,162 212,228,174 175,234,189 +246,221,162 247,220,163 248,221,160 247,220,157 247,220,156 246,220,158 75,137,49 145,171,95 246,220,159 248,219,160 182,188,115 74,135,47 72,135,46 255,221,156 255,219,156 111,159,80 47,139,56 37,145,65 35,123,33 16,107,9 248,216,155 254,220,158 255,218,153 231,222,167 84,186,124 81,183,122 91,160,82 251,220,158 76,143,59 78,226,190 118,220,174 134,166,86 150,173,98 247,221,161 248,221,159 75,136,48 246,220,156 246,220,159 246,221,162 246,220,160 247,221,158 115,155,72 164,179,105 246,222,158 251,221,159 255,219,158 255,218,158 216,226,173 140,239,203 146,239,201 226,214,151 190,189,117 134,162,83 76,135,46 68,131,40 208,229,173 130,243,207 30,128,41 197,212,154 255,219,158 164,237,195 22,143,64 0,100,0 121,159,78 251,220,163 237,214,155 36,118,23 208,201,132 248,219,157 247,220,161 162,180,107 0,100,0 15,107,10 245,218,156 247,221,155 248,221,158 252,220,159 255,218,159 +249,221,161 248,221,160 246,223,168 246,228,183 249,232,192 249,238,208 29,116,25 224,226,196 249,239,208 244,227,177 133,171,104 192,196,135 42,120,27 246,221,163 253,219,159 57,141,58 97,215,169 170,234,191 230,223,169 27,113,17 194,195,127 245,221,162 171,235,190 133,242,208 92,148,68 176,183,106 177,185,113 248,220,163 57,127,36 241,221,166 149,177,107 100,148,64 214,205,142 247,221,160 246,223,172 119,162,90 250,234,193 248,239,214 248,238,215 251,242,217 244,229,190 181,194,133 42,123,33 239,220,167 234,214,150 217,207,145 227,212,150 160,237,196 130,242,206 96,160,84 7,103,5 1,100,1 0,100,0 5,102,3 38,137,53 152,239,196 247,220,161 174,180,108 100,148,64 248,220,163 250,219,161 169,189,120 0,100,0 38,119,25 250,220,162 95,146,63 136,170,97 249,229,187 250,237,203 225,225,192 19,110,16 0,100,0 97,150,72 248,231,183 246,231,186 246,221,167 250,221,160 248,221,162 +248,220,163 241,223,153 245,237,212 252,251,246 245,235,206 222,230,205 44,124,38 246,228,181 246,228,185 244,236,204 91,151,82 231,240,225 46,123,34 244,221,159 249,220,162 43,120,27 241,213,151 255,220,157 249,221,159 30,115,20 148,172,92 234,223,167 113,245,210 129,238,199 92,146,64 121,159,77 0,100,0 0,100,0 33,116,21 103,149,67 64,130,42 78,138,50 247,222,159 246,219,164 251,245,229 173,201,160 244,236,213 248,246,235 244,233,204 247,227,180 245,232,192 244,238,212 19,111,18 0,100,0 0,100,0 0,100,0 21,110,14 240,213,153 254,219,159 190,191,117 53,126,36 191,192,125 98,147,62 206,226,174 103,249,214 160,236,193 247,220,160 248,222,160 52,125,34 215,204,142 247,220,163 250,219,162 41,120,26 0,100,0 126,161,80 62,131,44 252,252,244 249,241,221 246,242,224 61,135,55 0,100,0 46,124,34 236,228,195 247,240,218 249,247,240 249,243,218 244,218,162 247,222,160 +247,221,161 249,221,159 245,222,174 246,234,196 241,225,182 164,194,145 110,163,101 247,239,209 249,239,208 250,239,216 72,140,61 143,179,121 97,148,69 246,222,157 245,221,158 33,116,21 247,221,161 247,222,161 249,221,161 87,142,57 97,147,63 245,221,162 248,220,162 173,182,108 149,173,95 118,158,77 246,221,161 248,221,161 247,221,161 202,199,131 79,139,51 138,168,91 250,222,159 249,220,159 245,226,179 208,211,162 243,229,186 251,248,231 246,239,219 248,237,207 249,239,212 251,241,215 169,194,145 9,105,7 0,100,0 0,100,0 0,100,0 147,172,96 247,221,161 245,220,159 13,106,8 218,206,141 87,142,57 247,221,161 248,221,161 252,220,158 247,221,160 248,221,161 175,185,114 91,144,59 247,221,161 247,221,161 147,172,96 0,100,0 21,110,14 222,208,147 247,230,188 250,230,185 117,165,101 0,100,0 19,110,16 216,220,181 249,240,215 250,239,215 249,239,213 246,230,190 246,220,161 247,222,160 +247,222,160 248,220,163 248,220,161 246,221,156 247,221,158 101,149,66 175,187,119 247,223,168 246,220,161 246,220,161 91,144,59 29,114,18 35,117,22 44,122,29 60,129,39 62,130,40 249,220,161 250,220,160 231,213,150 143,169,94 60,129,39 254,220,157 255,219,158 85,141,55 149,173,97 171,183,111 248,221,161 247,221,162 248,221,161 249,221,160 247,221,161 247,220,163 248,221,162 249,222,160 248,221,157 116,156,74 233,210,148 244,222,165 246,225,169 244,221,165 245,220,157 0,100,0 246,220,160 213,204,134 111,154,72 177,185,117 178,187,116 70,134,45 250,220,160 250,221,161 79,139,52 0,100,0 78,138,50 254,219,158 253,220,158 247,221,161 247,221,161 247,221,161 247,221,161 58,128,38 229,211,148 247,221,161 239,217,156 40,119,26 188,191,124 247,220,163 247,220,158 167,181,106 0,100,0 9,104,6 191,195,131 247,221,162 247,220,158 245,220,162 245,219,158 247,219,159 248,221,162 247,222,161 +247,221,161 247,221,161 247,221,161 247,221,162 247,221,161 42,120,27 233,214,150 247,221,161 247,221,161 247,221,160 247,221,161 248,221,161 248,221,161 245,220,159 222,208,144 216,205,140 240,221,165 234,223,167 199,200,131 180,187,118 57,128,38 201,229,182 181,233,185 36,118,24 37,117,24 5,102,3 50,124,33 103,149,65 147,171,93 197,197,130 249,221,160 247,221,160 247,221,161 247,221,161 246,221,161 207,201,135 75,137,49 246,221,160 246,221,159 247,221,160 248,221,161 248,221,161 247,221,161 248,221,161 247,221,160 247,221,161 246,220,159 27,113,17 230,220,163 239,222,164 152,174,98 87,142,57 103,152,71 149,211,153 202,229,180 249,220,160 247,221,161 247,221,161 248,221,160 171,181,108 132,164,86 243,221,162 246,221,161 247,221,161 247,221,161 247,221,161 196,196,128 11,105,7 5,102,3 176,185,113 248,221,160 248,221,161 246,221,161 246,222,160 247,221,161 248,220,161 247,221,162 248,221,161 +247,221,161 247,221,161 247,221,161 247,221,161 233,214,152 48,123,31 247,221,161 247,221,161 248,221,161 248,221,161 224,210,147 231,213,150 249,221,160 255,219,158 250,221,160 251,219,160 156,237,198 83,253,226 140,184,114 180,183,109 68,136,50 99,249,218 138,241,203 12,105,7 0,100,0 0,100,0 0,100,0 0,100,0 0,100,0 0,100,0 36,118,23 250,221,160 247,221,161 247,221,161 247,221,161 247,221,161 110,154,72 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 246,222,160 251,220,160 255,219,158 249,222,159 86,142,58 93,214,169 133,241,205 232,208,146 0,100,0 120,178,108 52,195,140 176,233,189 255,219,155 255,220,157 255,219,157 238,222,164 150,234,194 25,137,54 190,230,183 251,220,159 247,221,161 247,221,161 182,189,119 11,105,7 1,100,1 167,181,109 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,222,160 246,221,161 254,219,159 252,220,159 +247,221,161 247,221,161 247,221,161 247,221,161 188,192,122 101,149,65 247,221,161 247,221,161 246,221,161 170,183,112 0,100,0 0,100,0 0,101,1 21,115,22 69,137,49 210,200,132 218,226,172 184,233,183 115,163,87 117,175,104 81,165,93 139,241,201 148,239,200 121,213,158 48,146,68 7,106,9 0,100,0 0,100,0 0,100,0 0,100,0 13,106,8 248,220,162 247,221,161 140,168,91 33,116,21 173,184,112 153,175,100 247,221,161 247,221,161 247,221,161 247,221,161 249,221,160 240,221,164 139,241,205 118,245,209 194,231,180 239,223,164 159,176,103 118,176,106 203,229,178 225,224,171 39,128,38 106,188,127 61,163,90 149,239,196 145,240,198 139,240,203 173,235,189 194,229,182 117,246,210 41,132,47 237,221,164 249,221,159 247,221,161 247,221,161 105,151,68 0,100,0 105,151,68 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 251,220,160 224,224,172 115,247,210 135,240,204 211,228,174 +247,221,161 247,221,161 247,221,161 247,221,161 147,172,96 155,176,101 247,221,161 248,221,160 245,222,160 98,148,65 91,145,59 0,100,0 0,100,0 0,100,0 0,100,0 201,198,128 250,221,160 191,231,181 50,170,104 43,164,93 79,198,143 126,242,209 144,240,200 166,234,191 178,231,188 117,241,205 57,223,181 96,183,120 60,129,38 118,161,80 138,171,96 248,221,161 247,221,161 85,141,55 0,100,0 15,107,10 235,215,153 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 247,220,161 210,227,174 142,240,202 112,246,211 207,229,173 218,202,136 94,149,66 147,240,199 84,250,224 53,171,106 67,184,121 38,142,61 149,238,198 177,233,188 169,234,189 103,249,214 96,248,219 211,226,174 50,124,32 238,222,166 239,222,164 247,221,162 247,221,161 73,136,48 0,100,0 171,183,111 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 243,221,164 194,232,180 122,245,207 135,243,203 +0,100,0 247,221,161 247,221,161 247,221,161 114,156,74 204,200,133 247,221,161 247,221,161 247,221,161 71,135,46 245,221,158 13,106,8 0,100,0 0,100,0 2,100,1 244,215,150 213,226,176 64,255,232 52,164,96 48,139,55 72,235,199 121,243,208 125,243,207 99,247,220 167,237,189 253,219,159 131,241,203 66,255,230 97,174,106 118,245,211 61,175,108 221,225,174 251,219,161 44,121,29 202,198,133 213,204,140 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,162 250,219,161 255,220,154 255,219,155 252,220,159 255,218,156 42,136,51 54,255,235 184,230,183 102,205,151 41,171,107 29,132,46 111,245,213 103,247,218 196,231,180 241,221,164 87,249,222 123,244,208 26,122,32 109,247,216 138,242,199 236,222,166 246,221,160 44,121,29 0,100,0 184,190,120 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,162 253,220,158 255,218,156 255,220,156 +247,221,161 247,221,161 247,221,161 247,221,161 75,137,49 243,219,158 247,221,161 247,221,161 231,213,150 103,150,67 215,205,140 92,144,59 201,212,152 130,193,132 32,121,30 231,225,164 230,222,169 113,245,211 38,169,100 30,137,55 118,244,207 220,225,169 220,223,175 81,250,226 78,252,222 251,217,162 169,234,188 60,252,234 127,195,132 240,218,162 102,154,73 243,220,165 238,215,156 54,126,35 247,220,163 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 188,192,122 68,133,44 64,131,41 229,214,150 212,227,176 182,233,185 204,228,178 241,221,164 48,132,45 74,253,227 112,246,209 102,237,201 43,142,62 59,130,41 190,230,180 53,255,235 120,244,210 255,217,154 108,245,211 105,248,217 37,119,26 230,227,161 236,221,170 244,222,160 248,221,162 19,109,12 0,100,0 194,195,126 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,220,161 241,221,165 200,231,178 188,231,184 +247,221,161 247,221,161 247,221,161 247,221,161 62,130,40 247,221,161 247,221,161 247,221,161 165,180,107 169,182,110 141,169,92 171,182,109 211,228,172 112,223,176 28,139,57 147,241,198 244,219,162 229,210,148 107,173,101 45,149,71 111,245,212 109,245,214 107,246,217 105,247,213 187,231,183 202,229,176 94,249,219 64,221,182 197,225,172 185,194,125 149,171,96 249,221,160 194,195,126 112,155,73 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 188,192,122 40,120,26 5,102,3 0,100,0 37,118,23 159,212,156 124,245,207 105,247,213 169,234,192 76,135,46 229,223,169 159,237,196 123,244,209 27,135,51 28,137,55 96,248,219 121,244,209 207,228,176 182,232,184 73,253,228 140,241,200 37,119,25 238,222,163 255,217,162 250,220,162 246,220,163 15,107,10 0,100,0 211,203,138 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,222,158 240,220,166 169,235,191 114,245,209 +247,221,161 247,221,161 247,221,161 247,221,160 81,140,52 29,114,18 94,146,60 162,178,103 81,139,52 208,201,135 79,139,51 239,217,155 248,220,161 104,148,65 103,150,66 241,222,161 220,225,170 149,204,146 130,170,98 136,163,84 241,222,163 232,224,168 239,223,164 226,224,172 121,243,210 96,247,223 131,243,202 188,205,146 209,227,177 45,180,121 131,211,158 248,221,159 150,173,97 184,190,120 247,221,160 248,221,161 248,221,159 247,219,157 231,211,147 38,118,24 218,207,141 186,191,121 21,110,13 0,100,0 13,106,8 0,100,0 244,221,159 190,195,125 126,177,106 198,229,180 249,221,157 251,221,158 29,115,20 98,154,71 244,222,161 200,230,179 110,246,216 87,249,219 170,234,191 248,220,162 21,122,31 86,250,226 193,232,180 247,220,160 247,220,163 7,103,5 0,100,0 233,214,151 246,220,158 247,219,157 247,219,157 247,220,155 247,220,160 246,221,161 247,222,159 246,222,160 251,220,159 250,221,159 +247,221,162 248,222,159 0,100,0 247,220,164 169,185,118 0,100,0 0,100,0 0,100,0 0,100,0 126,163,82 87,143,59 244,220,161 248,220,161 0,100,0 100,148,63 145,209,153 80,233,196 53,170,101 121,175,106 190,192,122 249,221,160 255,219,159 226,223,171 193,230,185 212,227,173 238,223,163 254,218,161 236,211,150 242,222,160 66,146,65 189,230,180 245,222,160 107,151,71 246,221,157 247,220,159 247,220,167 245,227,171 246,231,190 222,219,177 76,141,60 247,226,174 246,222,163 225,212,153 114,155,73 44,121,29 33,116,21 81,140,53 102,194,136 87,250,221 152,238,198 241,223,162 196,196,128 5,102,3 214,202,136 216,226,174 191,231,184 220,225,170 242,223,161 251,219,161 251,220,161 36,119,26 176,235,186 207,228,177 251,220,161 231,213,151 0,100,0 7,103,5 247,223,163 249,226,181 249,231,196 248,234,197 250,233,195 246,222,173 246,222,165 245,223,165 246,220,159 247,222,160 249,221,161 +249,221,162 246,218,160 248,233,197 249,245,232 245,238,215 174,200,161 91,151,79 23,112,18 0,100,0 3,102,3 163,193,148 247,244,224 248,223,172 69,134,44 0,100,0 0,100,0 0,100,0 0,100,0 104,150,65 240,219,157 250,221,158 230,222,168 101,250,214 88,251,220 229,222,171 252,222,156 247,221,161 219,208,144 155,175,100 57,127,36 206,197,129 231,216,153 71,134,45 246,220,162 249,240,213 251,243,226 246,240,216 249,245,230 247,238,207 154,183,121 132,170,103 247,238,206 249,242,226 248,239,215 242,223,159 250,219,164 243,221,163 227,224,171 231,224,167 255,218,160 188,191,121 35,117,22 172,181,106 204,228,177 75,254,225 124,244,206 247,221,159 247,220,163 245,222,161 251,221,160 36,118,23 56,126,35 55,126,34 54,126,36 47,122,29 3,101,2 29,117,26 248,242,218 248,243,228 249,242,222 248,233,198 247,235,196 240,231,190 248,240,213 248,243,229 247,235,199 245,220,159 249,221,161 +246,221,161 245,219,162 246,229,191 249,244,220 241,227,187 252,248,244 247,243,224 248,234,195 204,212,168 147,183,131 234,235,210 253,249,237 242,225,179 206,200,129 5,102,3 0,100,0 0,100,0 0,100,0 79,139,51 248,222,160 247,221,160 240,221,165 211,229,173 227,225,168 250,220,161 246,221,161 247,221,161 11,105,7 0,100,0 0,100,0 0,100,0 0,100,0 75,136,47 245,221,160 245,236,206 249,240,211 242,231,195 253,250,246 246,241,209 246,232,198 155,187,134 97,156,85 202,216,185 251,246,228 246,222,164 248,219,164 245,222,160 227,209,143 161,177,103 72,135,46 82,139,53 205,201,136 248,222,157 236,222,166 206,229,176 236,223,165 249,221,162 249,220,163 245,221,161 248,221,161 95,146,62 232,213,149 245,222,161 247,222,160 250,221,159 82,140,57 55,131,48 249,235,200 251,244,223 250,247,235 245,236,201 243,234,200 250,243,218 248,241,217 248,245,235 247,240,212 242,220,160 247,222,160 +246,222,160 246,222,161 245,219,160 247,221,163 246,222,165 247,228,180 249,232,192 250,229,189 249,225,178 246,226,175 249,226,180 247,223,161 245,221,159 247,221,162 180,189,117 103,150,66 60,129,39 34,117,22 188,192,123 248,221,161 248,221,161 250,221,159 255,219,158 250,221,160 247,221,161 247,221,161 247,221,161 188,192,122 105,151,68 56,127,36 13,106,8 60,129,39 236,215,157 245,223,158 246,220,158 247,221,165 249,223,165 247,229,187 248,232,193 248,228,185 245,226,172 225,215,163 121,162,86 65,132,43 57,127,36 55,127,36 58,128,37 87,142,57 151,174,98 224,210,147 246,221,161 244,222,161 246,221,161 253,220,159 254,219,159 249,220,162 247,220,163 246,221,163 247,221,162 247,221,161 174,185,114 46,122,30 54,126,35 52,125,34 50,124,32 33,116,21 126,160,82 247,223,162 248,225,175 249,232,192 245,231,189 246,227,180 248,225,173 250,227,179 248,225,171 245,220,161 246,221,161 246,221,162 +247,221,161 247,221,161 247,221,161 247,221,160 248,221,161 247,220,158 246,219,157 246,220,157 247,220,159 248,221,158 247,220,160 246,221,160 247,221,161 247,221,162 247,221,161 248,221,161 253,220,159 255,219,158 251,220,160 243,222,162 247,221,159 241,221,164 231,223,167 245,222,161 247,221,161 247,221,161 247,221,161 249,221,160 255,219,158 253,220,159 247,221,161 248,221,160 246,221,162 246,221,161 247,221,161 247,221,161 248,221,160 247,220,157 246,219,158 247,220,159 247,221,158 247,220,159 247,220,159 247,221,160 247,221,162 246,221,161 246,221,161 247,222,160 253,219,159 252,220,159 248,221,160 245,221,161 248,221,160 231,224,164 239,222,167 247,221,161 246,221,161 246,221,161 247,221,162 253,220,159 255,220,155 254,220,159 249,221,162 247,221,161 247,221,162 246,221,162 247,221,161 247,221,161 248,220,159 247,219,157 246,219,158 248,220,159 247,220,160 246,220,159 248,220,159 248,221,161 247,221,161 247,221,161 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,162 246,222,161 253,220,158 255,219,157 250,221,160 247,221,161 252,220,159 183,233,185 133,242,206 228,223,170 255,220,158 231,224,165 0,100,0 120,244,209 247,220,160 255,218,159 250,220,160 250,221,160 240,222,163 178,232,190 190,232,181 247,221,160 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 253,219,158 254,220,157 248,220,162 249,221,160 245,221,162 152,238,197 177,233,191 248,221,159 253,221,156 202,230,177 84,252,222 160,236,198 255,219,157 255,220,158 253,220,159 252,220,160 207,227,175 165,237,194 208,228,176 250,221,160 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,160 255,219,157 253,220,159 248,221,161 +247,221,161 247,221,161 0,100,0 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 245,221,161 246,221,162 250,221,161 192,230,182 169,235,190 229,223,168 251,221,159 250,220,157 177,234,185 111,248,210 223,225,170 246,221,160 216,225,175 142,242,199 170,234,192 195,229,179 204,228,180 215,229,169 247,219,162 147,240,201 73,254,227 181,233,186 248,221,160 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,160 243,221,163 179,233,189 185,233,184 238,221,165 247,221,160 243,221,164 144,240,201 157,236,198 254,219,158 237,224,161 199,230,179 134,241,206 185,231,185 206,229,176 203,230,176 227,223,170 216,227,172 84,251,225 103,247,218 214,227,173 248,220,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 250,221,160 232,224,166 164,235,195 202,229,178 244,221,161 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 245,221,161 0,100,0 251,220,160 193,230,185 93,249,217 93,250,217 183,231,187 254,219,159 248,221,158 232,222,166 158,236,195 105,246,216 114,245,212 123,243,206 132,242,204 139,241,203 128,243,206 90,250,222 110,246,213 177,232,188 231,224,164 255,218,156 255,219,159 249,221,160 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,160 244,221,162 159,237,194 83,250,224 113,246,212 213,228,174 251,221,158 251,220,160 205,229,178 121,244,209 105,247,214 112,245,210 129,242,207 134,241,207 140,239,203 115,244,211 89,251,223 136,241,204 208,227,177 248,220,157 255,219,154 252,221,159 249,221,160 248,220,162 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 250,220,160 233,223,167 133,242,204 81,251,223 134,241,205 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,162 247,221,161 254,220,158 242,222,162 215,227,176 225,225,170 252,222,155 224,224,170 93,249,220 91,248,220 150,236,200 106,247,212 118,244,212 124,243,210 145,239,201 207,228,174 225,224,169 90,249,218 87,249,225 193,229,180 144,239,202 154,239,196 228,224,171 250,219,161 247,220,163 247,220,163 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,160 252,220,158 238,221,167 207,229,175 234,225,164 255,219,158 181,231,188 65,254,230 141,239,200 138,239,201 104,245,217 124,243,209 120,245,206 161,236,196 225,224,170 202,228,178 68,253,230 154,238,195 183,233,185 133,241,206 172,237,188 238,222,164 246,222,160 246,220,163 246,222,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 246,221,161 245,222,159 255,219,158 224,225,169 215,227,174 +247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 249,221,160 252,220,159 250,221,160 255,221,157 214,225,174 70,254,227 123,243,209 152,238,197 82,251,224 189,230,184 196,230,180 86,249,226 88,250,221 250,218,162 168,236,188 64,255,235 169,234,187 185,231,186 179,234,187 0,100,0 249,220,162 247,220,163 247,220,163 247,221,162 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 246,221,162 251,221,158 253,221,157 248,220,162 255,219,159 163,235,194 65,254,233 180,233,186 119,244,208 108,245,218 202,228,175 173,233,188 66,254,233 129,244,204 255,218,158 111,245,214 106,246,213 208,226,179 170,237,186 187,231,185 242,222,165 247,222,161 246,220,163 247,222,160 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 247,221,161 248,221,161 248,221,161 251,221,159 251,221,159 diff --git a/ReCapcha/Test/bin/Debug/experiment/7_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/7_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/7_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/7_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/7_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/7_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/7_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/7_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/7_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/7_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/7_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/80_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/80_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/80_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/80_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/80_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/80_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/80_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/80_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/80_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/80_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/80_original.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_bged.txt new file mode 100644 index 0000000..1b7ae4c --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_bged.txt @@ -0,0 +1,20 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 97,97,97 99,99,99 113,113,113 113,113,113 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 51,51,51 30,30,30 54,54,54 38,38,38 50,50,50 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 77,77,77 65,65,65 71,71,71 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 44,44,44 61,61,61 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 102,102,102 106,106,106 92,92,92 110,110,110 115,115,115 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 56,56,56 44,44,44 38,38,38 54,54,54 35,35,35 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 51,51,51 71,71,71 43,43,43 51,51,51 64,64,64 62,62,62 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 73,73,73 74,74,74 76,76,76 57,57,57 56,56,56 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 112,112,112 255,255,255 255,255,255 255,255,255 92,92,92 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 41,41,41 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 49,49,49 69,69,69 255,255,255 255,255,255 255,255,255 66,66,66 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 103,103,103 255,255,255 255,255,255 255,255,255 116,116,116 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 49,49,49 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 107,107,107 255,255,255 255,255,255 105,105,105 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 51,51,51 51,51,51 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 107,107,107 110,110,110 98,98,98 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 57,57,57 66,66,66 64,64,64 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 61,61,61 69,69,69 255,255,255 255,255,255 255,255,255 59,59,59 79,79,79 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 95,95,95 102,102,102 123,123,123 107,107,107 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 62,62,62 50,50,50 60,60,60 64,64,64 50,50,50 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 68,68,68 70,70,70 61,61,61 70,70,70 77,77,77 64,64,64 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 93,93,93 255,255,255 255,255,255 255,255,255 87,87,87 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 61,61,61 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 60,60,60 60,60,60 76,76,76 255,255,255 63,63,63 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 30,30,30 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 46,46,46 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 39,39,39 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 92,92,92 255,255,255 255,255,255 255,255,255 84,84,84 116,116,116 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 58,58,58 51,51,51 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 113,113,113 100,100,100 98,98,98 91,91,91 135,135,135 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 46,46,46 66,66,66 49,49,49 56,56,56 51,51,51 69,69,69 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 49,49,49 48,48,48 74,74,74 37,37,37 56,56,56 71,71,71 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 67,67,67 89,89,89 58,58,58 48,48,48 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 104,104,104 91,91,91 113,113,113 111,111,111 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 40,40,40 54,54,54 47,47,47 48,48,48 53,53,53 48,48,48 45,45,45 49,49,49 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 39,39,39 66,66,66 63,63,63 48,48,48 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 69,69,69 72,72,72 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_binaried.txt new file mode 100644 index 0000000..7cb8be2 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_binaried.txt @@ -0,0 +1,20 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_greied.txt new file mode 100644 index 0000000..f9e3fec --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_greied.txt @@ -0,0 +1,20 @@ +226,226,226 228,228,228 187,187,187 188,188,188 189,189,189 194,194,194 170,170,170 194,194,194 199,199,199 218,218,218 222,222,222 230,230,230 233,233,233 208,208,208 227,227,227 220,220,220 220,220,220 222,222,222 221,221,221 184,184,184 199,199,199 212,212,212 200,200,200 222,222,222 229,229,229 222,222,222 217,217,217 223,223,223 229,229,229 175,175,175 184,184,184 191,191,191 192,192,192 180,180,180 177,177,177 189,189,189 166,166,166 200,200,200 189,189,189 188,188,188 194,194,194 217,217,217 240,240,240 208,208,208 186,186,186 235,235,235 209,209,209 229,229,229 228,228,228 228,228,228 220,220,220 214,214,214 185,185,185 219,219,219 222,222,222 227,227,227 218,218,218 220,220,220 221,221,221 223,223,223 +217,217,217 238,238,238 209,209,209 188,188,188 187,187,187 220,220,220 203,203,203 185,185,185 158,158,158 209,209,209 190,190,190 179,179,179 194,194,194 240,240,240 182,182,182 234,234,234 218,218,218 231,231,231 229,229,229 224,224,224 172,172,172 190,190,190 176,176,176 182,182,182 211,211,211 238,238,238 222,222,222 224,224,224 223,223,223 238,238,238 184,184,184 213,213,213 216,216,216 238,238,238 199,199,199 190,190,190 194,194,194 194,194,194 164,164,164 237,237,237 169,169,169 241,241,241 197,197,197 237,237,237 231,231,231 171,171,171 230,230,230 230,230,230 210,210,210 223,223,223 228,228,228 221,221,221 202,202,202 236,236,236 213,213,213 220,220,220 228,228,228 224,224,224 217,217,217 212,212,212 +222,222,222 226,226,226 241,241,241 244,244,244 209,209,209 201,201,201 215,215,215 230,230,230 211,211,211 212,212,212 191,191,191 187,187,187 182,182,182 183,183,183 177,177,177 181,181,181 206,206,206 162,162,162 213,213,213 239,239,239 235,235,235 173,173,173 208,208,208 194,194,194 211,211,211 175,175,175 203,203,203 186,186,186 187,187,187 186,186,186 175,175,175 242,242,242 231,231,231 207,207,207 233,233,233 184,184,184 166,166,166 184,184,184 213,213,213 177,177,177 193,193,193 193,193,193 195,195,195 189,189,189 177,177,177 219,219,219 184,184,184 178,178,178 233,233,233 224,224,224 247,247,247 206,206,206 189,189,189 212,212,212 220,220,220 186,186,186 218,218,218 221,221,221 223,223,223 225,225,225 +227,227,227 184,184,184 174,174,174 171,171,171 192,192,192 224,224,224 199,199,199 100,100,100 97,97,97 99,99,99 113,113,113 113,113,113 72,72,72 233,233,233 226,226,226 195,195,195 183,183,183 195,195,195 195,195,195 175,175,175 198,198,198 51,51,51 30,30,30 54,54,54 38,38,38 50,50,50 180,180,180 193,193,193 182,182,182 189,189,189 201,201,201 175,175,175 190,190,190 172,172,172 63,63,63 77,77,77 65,65,65 71,71,71 55,55,55 224,224,224 189,189,189 161,161,161 231,231,231 218,218,218 243,243,243 184,184,184 231,231,231 186,186,186 66,66,66 44,44,44 61,61,61 90,90,90 216,216,216 187,187,187 225,225,225 230,230,230 179,179,179 189,189,189 205,205,205 220,220,220 +220,220,220 197,197,197 226,226,226 202,202,202 184,184,184 185,185,185 186,186,186 97,97,97 102,102,102 106,106,106 92,92,92 110,110,110 115,115,115 100,100,100 228,228,228 211,211,211 179,179,179 225,225,225 198,198,198 216,216,216 52,52,52 56,56,56 44,44,44 38,38,38 54,54,54 35,35,35 70,70,70 193,193,193 194,194,194 185,185,185 183,183,183 190,190,190 188,188,188 76,76,76 51,51,51 71,71,71 43,43,43 51,51,51 64,64,64 62,62,62 61,61,61 203,203,203 198,198,198 228,228,228 212,212,212 212,212,212 185,185,185 72,72,72 73,73,73 74,74,74 76,76,76 57,57,57 56,56,56 68,68,68 225,225,225 211,211,211 218,218,218 216,216,216 213,213,213 213,213,213 +235,235,235 179,179,179 220,220,220 224,224,224 219,219,219 184,184,184 186,186,186 112,112,112 112,112,112 183,183,183 232,232,232 219,219,219 92,92,92 111,111,111 211,211,211 240,240,240 228,228,228 198,198,198 173,173,173 240,240,240 42,42,42 179,179,179 244,244,244 235,235,235 198,198,198 186,186,186 41,41,41 61,61,61 177,177,177 197,197,197 199,199,199 193,193,193 192,192,192 55,55,55 187,187,187 181,181,181 247,247,247 186,186,186 227,227,227 66,66,66 62,62,62 168,168,168 185,185,185 189,189,189 241,241,241 232,232,232 66,66,66 49,49,49 69,69,69 165,165,165 197,197,197 181,181,181 66,66,66 74,74,74 222,222,222 231,231,231 231,231,231 221,221,221 207,207,207 192,192,192 +220,220,220 189,189,189 234,234,234 209,209,209 227,227,227 216,216,216 215,215,215 103,103,103 103,103,103 190,190,190 237,237,237 222,222,222 116,116,116 88,88,88 222,222,222 233,233,233 182,182,182 184,184,184 188,188,188 231,231,231 234,234,234 231,231,231 184,184,184 195,195,195 222,222,222 211,211,211 42,42,42 49,49,49 243,243,243 209,209,209 188,188,188 196,196,196 178,178,178 198,198,198 239,239,239 181,181,181 175,175,175 203,203,203 175,175,175 62,62,62 60,60,60 196,196,196 173,173,173 185,185,185 187,187,187 226,226,226 65,65,65 77,77,77 181,181,181 238,238,238 186,186,186 191,191,191 198,198,198 63,63,63 62,62,62 232,232,232 225,225,225 225,225,225 224,224,224 224,224,224 +221,221,221 177,177,177 233,233,233 224,224,224 230,230,230 176,176,176 182,182,182 111,111,111 107,107,107 227,227,227 179,179,179 105,105,105 99,99,99 207,207,207 218,218,218 227,227,227 231,231,231 179,179,179 198,198,198 177,177,177 229,229,229 229,229,229 234,234,234 229,229,229 195,195,195 226,226,226 51,51,51 51,51,51 190,190,190 227,227,227 207,207,207 220,220,220 196,196,196 222,222,222 178,178,178 224,224,224 230,230,230 219,219,219 72,72,72 55,55,55 186,186,186 186,186,186 196,196,196 191,191,191 212,212,212 192,192,192 78,78,78 57,57,57 192,192,192 189,189,189 220,220,220 200,200,200 218,218,218 68,68,68 78,78,78 219,219,219 226,226,226 225,225,225 224,224,224 224,224,224 +185,185,185 182,182,182 181,181,181 181,181,181 199,199,199 179,179,179 195,195,195 100,100,100 107,107,107 110,110,110 98,98,98 95,95,95 201,201,201 176,176,176 194,194,194 186,186,186 224,224,224 183,183,183 241,241,241 175,175,175 225,225,225 227,227,227 245,245,245 215,215,215 239,239,239 52,52,52 34,34,34 197,197,197 175,175,175 196,196,196 195,195,195 219,219,219 212,212,212 203,203,203 54,54,54 57,57,57 66,66,66 64,64,64 52,52,52 190,190,190 227,227,227 177,177,177 185,185,185 240,240,240 180,180,180 234,234,234 60,60,60 61,61,61 69,69,69 191,191,191 193,193,193 198,198,198 59,59,59 79,79,79 61,61,61 189,189,189 188,188,188 185,185,185 183,183,183 185,185,185 +219,219,219 197,197,197 199,199,199 183,183,183 189,189,189 175,175,175 190,190,190 99,99,99 95,95,95 102,102,102 123,123,123 107,107,107 95,95,95 208,208,208 177,177,177 189,189,189 225,225,225 217,217,217 173,173,173 204,204,204 188,188,188 209,209,209 235,235,235 227,227,227 31,31,31 54,54,54 200,200,200 203,203,203 188,188,188 225,225,225 176,176,176 191,191,191 192,192,192 172,172,172 60,60,60 62,62,62 50,50,50 60,60,60 64,64,64 50,50,50 227,227,227 187,187,187 231,231,231 173,173,173 189,189,189 185,185,185 241,241,241 71,71,71 68,68,68 70,70,70 61,61,61 70,70,70 77,77,77 64,64,64 70,70,70 186,186,186 181,181,181 184,184,184 186,186,186 185,185,185 +227,227,227 187,187,187 208,208,208 189,189,189 187,187,187 186,186,186 193,193,193 101,101,101 93,93,93 244,244,244 226,226,226 191,191,191 87,87,87 106,106,106 198,198,198 225,225,225 175,175,175 236,236,236 191,191,191 169,169,169 193,193,193 238,238,238 213,213,213 55,55,55 55,55,55 224,224,224 183,183,183 211,211,211 183,183,183 188,188,188 186,186,186 185,185,185 185,185,185 184,184,184 182,182,182 187,187,187 232,232,232 171,171,171 56,56,56 61,61,61 67,67,67 220,220,220 172,172,172 205,205,205 226,226,226 175,175,175 195,195,195 211,211,211 74,74,74 60,60,60 60,60,60 76,76,76 223,223,223 63,63,63 71,71,71 193,193,193 186,186,186 203,203,203 219,219,219 221,221,221 +230,230,230 183,183,183 227,227,227 216,216,216 218,218,218 224,224,224 215,215,215 111,111,111 105,105,105 190,190,190 178,178,178 181,181,181 196,196,196 91,91,91 109,109,109 224,224,224 194,194,194 229,229,229 175,175,175 193,193,193 199,199,199 171,171,171 63,63,63 30,30,30 246,246,246 195,195,195 239,239,239 215,215,215 180,180,180 198,198,198 191,191,191 185,185,185 234,234,234 209,209,209 195,195,195 182,182,182 180,180,180 190,190,190 227,227,227 55,55,55 46,46,46 181,181,181 198,198,198 184,184,184 188,188,188 188,188,188 228,228,228 202,202,202 236,236,236 218,218,218 233,233,233 231,231,231 211,211,211 88,88,88 60,60,60 224,224,224 186,186,186 211,211,211 232,232,232 232,232,232 +228,228,228 181,181,181 228,228,228 225,225,225 229,229,229 233,233,233 211,211,211 98,98,98 109,109,109 222,222,222 224,224,224 190,190,190 244,244,244 100,100,100 106,106,106 192,192,192 220,220,220 215,215,215 190,190,190 174,174,174 199,199,199 39,39,39 62,62,62 238,238,238 227,227,227 245,245,245 231,231,231 219,219,219 223,223,223 178,178,178 194,194,194 179,179,179 186,186,186 218,218,218 235,235,235 169,169,169 196,196,196 197,197,197 173,173,173 62,62,62 57,57,57 211,211,211 178,178,178 208,208,208 180,180,180 243,243,243 179,179,179 187,187,187 183,183,183 195,195,195 193,193,193 189,189,189 68,68,68 70,70,70 225,225,225 185,185,185 186,186,186 205,205,205 222,222,222 223,223,223 +222,222,222 186,186,186 218,218,218 216,216,216 224,224,224 218,218,218 206,206,206 95,95,95 92,92,92 230,230,230 239,239,239 193,193,193 84,84,84 116,116,116 104,104,104 192,192,192 196,196,196 193,193,193 186,186,186 231,231,231 37,37,37 52,52,52 171,171,171 198,198,198 180,180,180 194,194,194 182,182,182 200,200,200 221,221,221 239,239,239 218,218,218 201,201,201 194,194,194 59,59,59 225,225,225 233,233,233 192,192,192 165,165,165 58,58,58 51,51,51 59,59,59 179,179,179 223,223,223 198,198,198 182,182,182 231,231,231 219,219,219 70,70,70 180,180,180 192,192,192 172,172,172 207,207,207 65,65,65 38,38,38 240,240,240 223,223,223 183,183,183 185,185,185 187,187,187 184,184,184 +227,227,227 213,213,213 228,228,228 223,223,223 231,231,231 211,211,211 212,212,212 111,111,111 113,113,113 100,100,100 98,98,98 91,91,91 135,135,135 99,99,99 226,226,226 189,189,189 183,183,183 216,216,216 196,196,196 186,186,186 55,55,55 46,46,46 66,66,66 49,49,49 56,56,56 51,51,51 69,69,69 44,44,44 237,237,237 235,235,235 174,174,174 184,184,184 233,233,233 49,49,49 48,48,48 74,74,74 37,37,37 56,56,56 71,71,71 67,67,67 196,196,196 162,162,162 192,192,192 190,190,190 194,194,194 191,191,191 195,195,195 71,71,71 67,67,67 89,89,89 58,58,58 48,48,48 74,74,74 248,248,248 212,212,212 227,227,227 223,223,223 211,211,211 204,204,204 203,203,203 +219,219,219 223,223,223 228,228,228 219,219,219 221,221,221 184,184,184 192,192,192 97,97,97 104,104,104 91,91,91 113,113,113 111,111,111 86,86,86 198,198,198 198,198,198 186,186,186 234,234,234 190,190,190 234,234,234 234,234,234 40,40,40 54,54,54 47,47,47 48,48,48 53,53,53 48,48,48 45,45,45 49,49,49 189,189,189 234,234,234 194,194,194 191,191,191 187,187,187 177,177,177 87,87,87 39,39,39 66,66,66 63,63,63 48,48,48 182,182,182 213,213,213 238,238,238 221,221,221 198,198,198 179,179,179 237,237,237 178,178,178 194,194,194 63,63,63 69,69,69 72,72,72 68,68,68 234,234,234 170,170,170 191,191,191 187,187,187 187,187,187 179,179,179 188,188,188 215,215,215 +196,196,196 208,208,208 231,231,231 224,224,224 218,218,218 192,192,192 187,187,187 179,179,179 190,190,190 180,180,180 185,185,185 194,194,194 175,175,175 189,189,189 183,183,183 196,196,196 195,195,195 239,239,239 181,181,181 237,237,237 217,217,217 198,198,198 215,215,215 229,229,229 180,180,180 197,197,197 191,191,191 175,175,175 198,198,198 194,194,194 171,171,171 184,184,184 190,190,190 214,214,214 197,197,197 187,187,187 190,190,190 181,181,181 184,184,184 188,188,188 194,194,194 176,176,176 194,194,194 196,196,196 186,186,186 194,194,194 192,192,192 186,186,186 233,233,233 241,241,241 172,172,172 222,222,222 202,202,202 207,207,207 189,189,189 219,219,219 215,215,215 208,208,208 180,180,180 215,215,215 +209,209,209 206,206,206 216,216,216 216,216,216 239,239,239 229,229,229 221,221,221 207,207,207 195,195,195 183,183,183 186,186,186 199,199,199 189,189,189 206,206,206 198,198,198 212,212,212 187,187,187 221,221,221 181,181,181 223,223,223 221,221,221 203,203,203 203,203,203 204,204,204 221,221,221 192,192,192 212,212,212 212,212,212 176,176,176 183,183,183 205,205,205 187,187,187 183,183,183 194,194,194 185,185,185 191,191,191 195,195,195 187,187,187 191,191,191 185,185,185 188,188,188 184,184,184 217,217,217 217,217,217 194,194,194 192,192,192 194,194,194 195,195,195 213,213,213 236,236,236 182,182,182 205,205,205 211,211,211 214,214,214 178,178,178 226,226,226 228,228,228 219,219,219 182,182,182 199,199,199 +224,224,224 211,211,211 210,210,210 202,202,202 236,236,236 226,226,226 221,221,221 207,207,207 216,216,216 202,202,202 197,197,197 204,204,204 193,193,193 204,204,204 187,187,187 203,203,203 185,185,185 201,201,201 183,183,183 200,200,200 225,225,225 218,218,218 205,205,205 197,197,197 224,224,224 191,191,191 217,217,217 234,234,234 182,182,182 186,186,186 222,222,222 212,212,212 197,197,197 185,185,185 185,185,185 212,212,212 213,213,213 205,205,205 209,209,209 188,188,188 193,193,193 185,185,185 215,215,215 215,215,215 192,192,192 190,190,190 191,191,191 193,193,193 192,192,192 223,223,223 201,201,201 186,186,186 215,215,215 223,223,223 171,171,171 231,231,231 230,230,230 224,224,224 183,183,183 188,188,188 +225,225,225 220,220,220 218,218,218 191,191,191 216,216,216 192,192,192 193,193,193 191,191,191 197,197,197 189,189,189 186,186,186 196,196,196 190,190,190 202,202,202 190,190,190 217,217,217 189,189,189 189,189,189 187,187,187 177,177,177 223,223,223 229,229,229 219,219,219 212,212,212 189,189,189 208,208,208 203,203,203 224,224,224 218,218,218 194,194,194 194,194,194 232,232,232 223,223,223 189,189,189 191,191,191 231,231,231 230,230,230 222,222,222 225,225,225 190,190,190 217,217,217 184,184,184 192,192,192 193,193,193 187,187,187 195,195,195 192,192,192 186,186,186 185,185,185 201,201,201 220,220,220 178,178,178 204,204,204 226,226,226 176,176,176 230,230,230 223,223,223 225,225,225 185,185,185 186,186,186 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_noised.txt new file mode 100644 index 0000000..1b7ae4c --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_noised.txt @@ -0,0 +1,20 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 97,97,97 99,99,99 113,113,113 113,113,113 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 51,51,51 30,30,30 54,54,54 38,38,38 50,50,50 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 77,77,77 65,65,65 71,71,71 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 44,44,44 61,61,61 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 102,102,102 106,106,106 92,92,92 110,110,110 115,115,115 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 56,56,56 44,44,44 38,38,38 54,54,54 35,35,35 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 51,51,51 71,71,71 43,43,43 51,51,51 64,64,64 62,62,62 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 73,73,73 74,74,74 76,76,76 57,57,57 56,56,56 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 112,112,112 112,112,112 255,255,255 255,255,255 255,255,255 92,92,92 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 41,41,41 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 66,66,66 49,49,49 69,69,69 255,255,255 255,255,255 255,255,255 66,66,66 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 103,103,103 255,255,255 255,255,255 255,255,255 116,116,116 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 42,42,42 49,49,49 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 107,107,107 255,255,255 255,255,255 105,105,105 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 51,51,51 51,51,51 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 107,107,107 110,110,110 98,98,98 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 34,34,34 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 57,57,57 66,66,66 64,64,64 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 61,61,61 69,69,69 255,255,255 255,255,255 255,255,255 59,59,59 79,79,79 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 95,95,95 102,102,102 123,123,123 107,107,107 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 31,31,31 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 62,62,62 50,50,50 60,60,60 64,64,64 50,50,50 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 68,68,68 70,70,70 61,61,61 70,70,70 77,77,77 64,64,64 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 93,93,93 255,255,255 255,255,255 255,255,255 87,87,87 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 55,55,55 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 61,61,61 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 60,60,60 60,60,60 76,76,76 255,255,255 63,63,63 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 105,105,105 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 30,30,30 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 46,46,46 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 98,98,98 109,109,109 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 39,39,39 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 92,92,92 255,255,255 255,255,255 255,255,255 84,84,84 116,116,116 104,104,104 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 58,58,58 51,51,51 59,59,59 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 38,38,38 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 111,111,111 113,113,113 100,100,100 98,98,98 91,91,91 135,135,135 99,99,99 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 46,46,46 66,66,66 49,49,49 56,56,56 51,51,51 69,69,69 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 49,49,49 48,48,48 74,74,74 37,37,37 56,56,56 71,71,71 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 67,67,67 89,89,89 58,58,58 48,48,48 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 104,104,104 91,91,91 113,113,113 111,111,111 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 40,40,40 54,54,54 47,47,47 48,48,48 53,53,53 48,48,48 45,45,45 49,49,49 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 39,39,39 66,66,66 63,63,63 48,48,48 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 63,63,63 69,69,69 72,72,72 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_original.txt new file mode 100644 index 0000000..fcbbe7d --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/82_original.txt @@ -0,0 +1,20 @@ +222,240,217 224,242,219 184,199,178 185,200,179 188,198,182 193,203,187 172,176,164 196,200,188 199,206,193 217,226,213 221,230,217 227,240,224 230,243,227 202,221,202 222,241,220 212,235,213 210,234,216 211,237,219 213,235,217 176,198,180 193,210,196 206,223,209 195,210,196 217,232,218 226,239,223 219,232,216 214,228,210 219,235,217 225,242,221 170,189,168 178,200,176 186,205,184 190,202,184 178,189,173 174,188,170 183,200,186 158,175,166 190,207,204 180,190,197 181,190,193 191,199,192 217,229,207 244,255,221 210,230,185 184,209,165 230,255,221 197,223,207 217,241,231 219,239,226 221,240,225 213,230,219 207,224,213 176,195,186 210,230,218 214,236,218 219,243,219 210,238,208 212,243,206 214,245,206 216,248,207 +213,231,208 234,252,229 206,221,200 185,199,181 186,196,180 219,229,213 203,210,197 187,191,179 158,165,152 208,217,204 189,198,185 175,188,174 191,204,188 234,253,234 176,195,176 227,247,228 210,232,214 222,243,228 222,241,226 217,236,221 167,181,169 185,199,187 172,184,172 178,190,178 209,219,207 236,246,233 220,230,217 222,233,217 220,233,217 234,250,232 180,196,178 209,226,205 215,227,207 236,248,230 195,207,195 183,197,191 185,198,200 183,197,203 155,167,171 231,242,240 167,177,165 241,253,231 199,212,180 238,254,220 228,249,216 165,187,162 220,243,228 218,242,230 201,221,209 216,233,222 220,237,228 213,230,221 193,211,204 227,246,237 204,225,210 212,235,213 220,248,218 216,246,211 210,241,202 205,237,196 +218,235,214 222,239,218 238,252,234 241,255,237 208,218,202 200,209,196 215,221,210 230,236,225 211,217,206 211,219,208 190,198,187 183,196,182 179,192,176 177,196,177 171,190,171 174,194,175 200,217,203 155,172,159 208,222,210 234,248,237 232,240,233 170,178,171 206,212,207 193,197,192 212,213,209 176,178,172 203,207,201 186,191,182 185,193,183 184,194,182 173,183,171 240,252,234 231,244,218 206,218,198 227,237,237 174,183,196 154,163,183 172,182,200 204,216,220 170,186,175 190,205,184 193,206,182 196,204,187 188,197,184 173,184,174 212,229,218 174,197,182 168,191,177 224,243,234 216,232,225 239,254,250 198,212,210 179,196,193 202,219,215 211,231,219 178,200,181 211,236,208 214,241,208 217,245,209 219,248,209 +223,240,219 180,197,176 171,185,167 168,181,165 190,200,187 223,231,220 199,205,194 100,105,96 97,102,93 97,105,95 111,120,110 111,121,109 68,81,67 228,244,227 220,238,221 189,207,190 178,192,180 191,202,192 193,202,192 172,180,173 197,201,196 50,53,51 32,30,30 56,54,54 41,36,37 53,48,49 182,180,180 195,193,192 182,183,181 190,191,187 200,204,199 175,181,170 190,202,180 170,181,165 56,65,69 66,73,92 52,58,87 57,67,91 44,57,65 217,231,225 186,199,183 159,171,153 229,237,227 216,222,217 238,246,245 176,189,187 220,241,233 175,196,188 56,73,70 35,49,48 52,64,68 81,93,97 205,220,223 177,193,192 216,234,227 221,242,227 171,195,171 182,208,178 198,225,192 214,241,207 +216,232,214 193,209,191 223,236,220 199,212,196 182,192,179 183,193,181 184,192,182 95,102,95 100,107,100 104,111,104 89,97,90 108,117,107 111,122,112 95,109,97 223,237,225 206,220,208 177,187,175 223,231,221 198,202,196 215,219,214 54,52,51 58,56,56 48,41,44 41,34,39 57,49,56 38,30,37 73,65,72 196,189,194 197,192,194 188,183,185 185,182,184 190,191,189 188,194,183 73,81,74 43,54,58 59,71,83 29,40,62 37,48,70 50,62,80 52,62,72 55,65,65 200,207,202 196,203,196 225,233,226 207,216,213 204,216,218 174,187,195 59,74,83 62,75,83 63,76,84 64,76,88 45,57,69 45,57,67 57,71,77 215,232,229 202,221,212 210,232,213 208,233,207 206,232,202 206,233,200 +231,247,229 175,191,173 217,230,214 220,233,219 217,227,215 182,191,181 184,191,184 110,117,110 110,117,110 181,188,181 229,236,231 216,224,217 88,99,91 107,118,108 207,218,208 236,248,236 227,235,224 198,203,194 173,177,171 241,242,238 44,42,41 182,177,178 247,240,245 240,229,237 202,191,201 190,179,189 45,34,44 64,56,63 180,172,179 200,194,199 202,196,201 195,192,194 191,194,192 50,59,56 179,191,191 170,184,190 236,252,255 171,185,204 211,222,249 53,61,84 54,60,73 163,170,173 182,190,183 187,197,185 237,247,241 224,236,238 54,64,82 35,46,68 57,67,85 153,163,180 185,195,213 169,179,197 54,64,81 62,74,86 211,226,229 221,238,234 222,243,228 213,236,214 199,224,198 185,211,181 +216,232,214 185,201,183 229,245,228 204,219,205 223,235,223 212,223,213 212,220,213 100,107,102 100,107,102 187,194,189 234,241,238 219,226,221 113,120,115 85,93,86 219,227,220 231,240,230 180,190,177 183,192,179 188,194,183 232,234,228 236,235,231 234,229,230 187,180,185 198,190,197 225,216,226 214,205,215 45,36,46 52,44,51 246,239,246 210,206,211 190,187,189 196,195,197 175,179,180 193,201,200 231,245,241 170,188,187 160,179,186 187,203,220 159,170,198 47,55,84 50,55,76 190,196,203 171,180,170 183,194,178 183,194,184 219,228,231 54,60,83 64,69,100 168,175,200 226,233,255 173,180,205 178,185,210 185,193,216 51,61,79 52,62,72 223,237,236 218,235,224 218,237,220 218,240,216 218,241,213 +217,233,215 173,189,171 228,244,227 219,235,218 226,238,226 172,183,173 179,187,180 108,115,110 104,111,108 224,231,228 176,183,180 102,109,106 96,103,98 204,211,206 216,222,217 225,234,224 228,242,224 176,191,170 197,207,191 176,184,173 230,232,226 229,230,228 236,234,234 232,226,231 198,191,198 229,222,229 54,47,54 52,48,53 191,187,192 227,226,228 207,207,207 219,222,220 194,200,195 218,228,222 170,185,181 212,230,231 215,233,244 202,220,237 55,69,92 41,52,74 176,185,199 179,188,192 193,201,194 189,199,187 209,216,211 185,194,198 67,74,93 44,51,78 179,185,214 176,182,211 207,212,243 187,193,222 205,212,239 56,65,85 68,77,91 210,222,226 218,234,227 218,237,222 219,238,217 219,240,215 +181,198,177 178,195,174 177,193,175 176,192,175 194,208,196 174,188,177 191,202,194 96,106,100 102,111,108 107,114,111 95,102,99 93,98,96 199,204,202 174,180,175 193,197,192 184,194,182 220,237,216 178,199,174 238,253,232 172,186,168 224,232,221 225,232,225 244,247,245 214,216,216 239,238,240 52,51,55 34,33,35 196,198,198 174,176,176 194,199,197 192,199,194 217,227,215 211,223,203 200,213,197 45,59,58 43,59,71 48,65,86 46,63,84 35,55,66 177,196,199 217,234,230 170,185,177 180,189,186 237,243,242 176,180,185 228,234,241 51,60,69 51,60,74 56,63,88 176,184,214 179,184,217 184,189,222 46,52,81 66,74,97 50,58,75 179,191,197 180,194,190 178,195,182 179,195,177 181,199,176 +215,232,211 193,210,189 195,212,191 179,195,177 184,199,185 170,184,172 184,197,189 95,105,99 91,101,95 97,106,103 121,126,124 105,110,108 94,97,95 207,210,208 176,180,175 188,196,185 220,240,217 211,234,206 168,189,164 200,217,196 184,197,183 207,216,206 233,239,234 224,229,228 30,32,33 53,55,56 199,201,201 201,206,204 185,192,187 221,232,224 172,183,173 188,201,185 191,206,179 168,185,164 50,66,65 47,62,78 32,48,71 41,60,81 46,70,76 37,60,55 217,240,226 180,197,184 227,237,231 170,175,176 185,188,196 179,185,192 234,243,246 62,71,80 55,62,87 55,62,95 47,52,85 56,61,94 64,70,99 51,58,83 59,67,84 176,188,194 173,187,183 177,194,181 182,198,180 181,198,177 +223,241,218 183,201,178 204,222,199 185,202,181 181,199,182 180,197,183 186,202,191 95,108,100 89,99,93 240,250,244 224,229,227 189,194,192 86,90,85 107,108,104 199,200,196 224,232,221 170,191,166 230,254,224 185,207,182 164,183,162 189,202,188 234,245,235 210,217,214 52,58,57 52,56,57 221,226,225 181,186,184 208,215,210 181,190,180 184,196,184 182,195,181 181,197,179 183,199,175 180,196,178 172,189,186 172,191,199 213,233,250 151,174,190 37,63,70 46,70,68 56,77,68 213,231,218 168,179,169 202,210,203 223,229,228 172,177,178 190,197,200 202,211,221 61,69,92 45,53,83 47,52,83 63,68,99 210,216,245 50,58,81 61,70,84 184,194,201 180,191,188 198,212,200 216,230,212 218,234,211 +227,246,219 179,198,173 223,242,217 211,231,208 212,231,212 218,236,219 208,225,212 104,120,109 99,112,104 186,196,190 175,182,177 180,184,179 197,198,194 93,92,88 111,110,106 224,230,219 190,208,185 223,246,218 170,190,167 188,204,187 195,207,195 168,175,170 60,65,64 27,31,32 244,245,249 194,196,197 236,241,240 213,219,214 178,187,177 196,206,193 188,201,185 182,196,178 231,244,228 202,219,206 185,202,198 168,189,191 160,185,195 168,194,208 205,231,245 37,60,68 33,54,52 174,191,180 195,208,192 182,193,177 186,196,184 185,192,189 224,228,233 194,199,214 223,231,254 203,212,239 220,226,255 218,224,253 198,205,232 76,85,105 51,59,72 216,227,231 180,192,186 206,221,207 229,244,223 229,245,222 +225,245,216 178,198,169 223,245,217 220,241,216 224,243,222 226,246,227 204,223,208 91,108,95 103,116,108 218,229,221 221,229,222 190,194,188 245,247,241 102,102,96 110,107,102 195,196,187 218,230,212 211,228,207 187,200,184 172,182,170 197,203,198 38,40,41 62,60,66 237,234,243 228,223,232 246,242,248 231,230,232 219,220,218 223,227,221 178,184,173 193,203,187 177,187,174 183,190,187 210,223,221 225,242,238 155,178,174 177,204,208 175,203,214 150,174,196 41,62,83 43,59,71 201,218,215 174,191,170 207,222,195 179,192,170 241,250,240 174,176,187 178,181,202 170,178,201 181,191,215 178,187,214 175,185,209 55,63,86 58,68,86 216,225,235 177,189,191 180,192,186 200,215,201 219,234,213 222,236,212 +219,240,208 183,204,172 213,235,206 211,233,205 218,240,216 212,233,211 199,218,201 88,107,92 87,101,90 226,237,229 236,244,237 193,197,191 85,87,81 120,117,112 109,105,100 196,194,186 196,203,190 191,201,188 184,192,182 230,234,229 37,36,38 53,49,55 173,165,176 200,191,204 183,173,186 197,187,199 185,178,185 203,198,200 223,222,218 242,243,234 220,224,212 201,207,196 191,197,196 51,63,65 213,231,232 217,240,242 171,198,208 143,169,185 34,58,82 30,51,73 44,62,73 169,186,183 219,235,217 196,212,188 181,191,174 229,236,229 214,216,227 61,65,84 169,176,196 178,189,209 158,169,191 193,204,226 53,62,82 26,36,53 231,240,249 215,227,227 177,190,182 182,195,179 186,199,177 183,197,173 +224,245,212 210,231,199 223,245,216 218,240,212 225,247,223 205,226,204 205,224,207 104,123,108 108,122,111 96,107,97 96,105,95 91,96,87 136,139,130 103,101,93 231,228,220 194,191,183 184,187,178 216,220,214 196,197,195 188,185,187 58,51,58 49,39,52 70,56,74 54,37,58 61,45,63 56,40,57 75,61,73 49,38,46 241,235,236 240,236,231 179,177,167 187,188,178 231,238,231 41,53,53 35,49,61 56,73,94 14,35,63 31,55,83 48,73,93 47,71,83 182,203,204 152,169,165 186,199,191 186,196,190 192,197,195 188,192,193 191,195,200 64,71,80 57,66,80 75,87,105 44,55,75 34,46,64 62,72,90 239,250,255 203,213,220 219,232,230 218,232,221 208,222,204 203,216,194 202,216,192 +215,238,206 219,242,210 223,245,216 214,236,208 216,236,213 179,198,177 186,204,187 92,107,93 100,112,100 89,98,88 111,119,109 111,116,107 87,90,81 202,200,192 203,200,192 191,188,180 236,236,230 192,191,187 236,234,233 236,234,234 42,39,41 55,51,56 49,41,51 50,42,53 56,46,58 52,41,51 50,39,47 54,45,48 193,188,187 239,236,228 199,197,186 194,196,184 186,194,183 171,182,179 77,87,97 24,38,57 48,63,89 44,63,84 30,52,63 166,190,190 202,223,215 230,247,238 217,227,221 195,200,199 177,178,182 235,236,240 177,179,180 191,194,198 56,64,71 59,69,79 62,72,82 58,68,78 224,235,243 160,172,178 183,195,195 180,194,188 182,196,184 176,190,172 187,199,179 214,227,205 +189,215,185 201,226,198 225,247,222 219,239,216 214,231,210 189,203,185 185,195,182 178,186,175 190,195,186 181,184,175 186,189,180 195,198,189 178,179,169 192,193,183 187,186,176 200,199,189 199,196,192 241,240,236 181,186,177 235,245,232 212,228,211 192,210,193 209,227,210 224,239,225 178,187,177 197,201,195 193,193,187 177,177,171 201,202,192 197,200,185 174,180,161 185,193,176 190,197,184 212,220,210 193,203,197 181,192,189 182,195,193 173,187,183 177,192,184 181,198,185 190,202,190 174,184,171 194,200,189 197,200,191 188,187,183 197,193,192 196,191,190 189,185,184 232,235,233 238,245,240 169,176,171 218,228,222 196,209,201 200,216,205 182,199,186 213,230,216 209,227,210 203,219,202 177,190,174 213,224,208 +200,228,199 197,225,196 210,232,208 211,231,208 235,251,233 227,238,222 220,229,216 207,213,202 198,199,190 186,187,178 189,190,181 202,203,194 192,193,183 209,210,200 201,203,191 215,216,206 191,188,184 223,223,217 181,187,176 219,235,217 213,238,212 193,223,194 193,223,194 195,222,196 216,235,214 189,202,186 212,219,206 214,218,206 178,183,168 184,193,173 206,215,194 187,199,177 183,190,177 194,200,189 184,193,180 190,199,186 193,204,188 185,196,180 189,201,183 183,195,177 189,196,181 185,192,177 220,222,210 220,221,211 199,196,188 197,193,188 201,192,189 201,195,190 216,217,208 236,242,231 182,189,176 203,213,200 208,221,205 209,225,208 172,191,172 220,239,220 222,240,223 214,230,213 178,191,177 197,207,194 +215,243,214 202,230,201 204,226,202 197,217,194 232,248,230 224,235,219 220,229,216 207,213,202 219,220,211 205,206,197 200,201,192 207,208,199 196,197,187 207,208,198 189,193,181 206,207,197 189,186,182 203,203,197 183,189,178 196,212,194 217,242,216 208,238,209 195,225,196 188,215,189 219,238,217 188,201,185 217,224,211 236,240,228 184,189,174 187,196,176 223,232,211 212,224,202 197,204,191 185,191,180 184,193,180 211,220,207 211,222,206 203,214,198 207,219,201 186,198,180 194,201,186 186,193,178 218,220,208 218,219,209 197,194,186 195,191,186 198,189,186 199,193,188 195,196,187 223,229,218 201,208,195 184,194,181 212,225,209 218,234,217 165,184,165 225,244,225 224,242,225 219,235,218 179,192,178 186,196,183 +216,244,215 211,239,210 212,234,210 186,206,183 212,228,210 190,201,185 192,201,188 191,197,186 200,201,192 192,193,184 189,190,181 199,200,191 193,194,184 205,206,196 192,196,184 220,221,211 193,190,186 191,191,185 187,193,182 173,189,171 215,240,214 219,249,220 209,239,210 203,230,204 184,203,182 205,218,202 203,210,197 226,230,218 220,225,210 195,204,184 195,204,183 232,244,222 223,230,217 189,195,184 190,199,186 230,239,226 228,239,223 220,231,215 223,235,217 188,200,182 218,225,210 185,192,177 195,197,185 196,197,187 192,189,181 200,196,191 199,190,187 192,186,181 188,189,180 201,207,196 220,227,214 176,186,173 201,214,198 221,237,220 170,189,170 224,243,224 217,235,218 220,236,219 181,194,180 184,194,181 diff --git a/ReCapcha/Test/bin/Debug/experiment/83_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/83_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/83_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/83_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/83_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/83_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/83_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/83_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/83_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/83_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/83_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/84_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/84_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/84_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/84_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/84_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/84_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/84_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/84_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/84_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/84_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/84_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/85_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/85_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/85_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/85_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/85_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/85_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/85_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/85_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/85_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/85_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/85_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/86_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/86_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/86_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/86_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/86_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/86_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/86_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/86_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/86_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/86_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/86_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/89_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/89_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/89_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/89_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/89_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/89_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/89_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/89_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/89_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/89_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/89_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/8_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/8_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/8_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/8_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/8_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/8_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/8_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/8_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/8_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/8_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/8_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/90_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/90_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/90_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/90_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/90_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/90_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/90_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/90_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/90_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/90_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/90_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/96_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/96_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/96_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/96_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/96_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/96_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/96_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/96_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/96_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/96_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/96_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/98_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/98_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/98_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/98_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/98_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/98_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/98_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/98_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/98_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/98_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/98_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/99_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/99_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_bged.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_binaried.txt new file mode 100644 index 0000000..fd494ad --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_binaried.txt @@ -0,0 +1,32 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 0,0,0 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_greied.txt new file mode 100644 index 0000000..fac811f --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_greied.txt @@ -0,0 +1,100 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 250,250,250 255,255,255 252,252,252 255,255,255 249,249,249 249,249,249 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 249,249,249 255,255,255 243,243,243 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 254,254,254 255,255,255 249,249,249 249,249,249 255,255,255 253,253,253 255,255,255 231,231,231 255,255,255 255,255,255 244,244,244 245,245,245 255,255,255 245,245,245 255,255,255 241,241,241 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 248,248,248 253,253,253 255,255,255 248,248,248 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 251,251,251 252,252,252 255,255,255 255,255,255 253,253,253 246,246,246 255,255,255 255,255,255 250,250,250 243,243,243 250,250,250 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 250,250,250 237,237,237 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 236,236,236 254,254,254 241,241,241 255,255,255 255,255,255 254,254,254 242,242,242 250,250,250 255,255,255 252,252,252 251,251,251 246,246,246 255,255,255 255,255,255 255,255,255 247,247,247 253,253,253 248,248,248 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 243,243,243 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 253,253,253 254,254,254 255,255,255 245,245,245 0,0,0 10,10,10 0,0,0 1,1,1 8,8,8 3,3,3 0,0,0 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 243,243,243 239,239,239 253,253,253 255,255,255 241,241,241 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 250,250,250 255,255,255 240,240,240 246,246,246 248,248,248 247,247,247 255,255,255 244,244,244 10,10,10 0,0,0 0,0,0 6,6,6 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 242,242,242 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 248,248,248 253,253,253 255,255,255 239,239,239 255,255,255 255,255,255 8,8,8 0,0,0 244,244,244 252,252,252 255,255,255 15,15,15 8,8,8 0,0,0 13,13,13 0,0,0 0,0,0 2,2,2 3,3,3 14,14,14 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 17,17,17 237,237,237 247,247,247 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 245,245,245 0,0,0 15,15,15 0,0,0 4,4,4 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 6,6,6 8,8,8 0,0,0 7,7,7 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 249,249,249 0,0,0 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 11,11,11 11,11,11 250,250,250 255,255,255 255,255,255 246,246,246 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 244,244,244 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 251,251,251 255,255,255 253,253,253 0,0,0 19,19,19 3,3,3 0,0,0 12,12,12 3,3,3 255,255,255 248,248,248 243,243,243 255,255,255 250,250,250 255,255,255 246,246,246 251,251,251 251,251,251 255,255,255 253,253,253 254,254,254 255,255,255 245,245,245 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 0,0,0 21,21,21 10,10,10 8,8,8 14,14,14 0,0,0 245,245,245 243,243,243 255,255,255 252,252,252 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 242,242,242 253,253,253 250,250,250 255,255,255 250,250,250 249,249,249 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 0,0,0 22,22,22 0,0,0 0,0,0 15,15,15 0,0,0 5,5,5 0,0,0 10,10,10 255,255,255 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 248,248,248 248,248,248 255,255,255 244,244,244 255,255,255 244,244,244 245,245,245 253,253,253 255,255,255 255,255,255 250,250,250 246,246,246 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 228,228,228 255,255,255 255,255,255 246,246,246 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 247,247,247 250,250,250 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 2,2,2 8,8,8 2,2,2 255,255,255 236,236,236 247,247,247 251,251,251 255,255,255 236,236,236 251,251,251 255,255,255 255,255,255 251,251,251 255,255,255 246,246,246 255,255,255 251,251,251 240,240,240 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 10,10,10 0,0,0 3,3,3 8,8,8 3,3,3 0,0,0 248,248,248 230,230,230 255,255,255 251,251,251 253,253,253 252,252,252 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 241,241,241 255,255,255 249,249,249 253,253,253 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 11,11,11 11,11,11 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 249,249,249 248,248,248 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 251,251,251 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 6,6,6 1,1,1 0,0,0 0,0,0 254,254,254 255,255,255 251,251,251 255,255,255 251,251,251 255,255,255 247,247,247 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 247,247,247 250,250,250 254,254,254 248,248,248 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 255,255,255 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 11,11,11 14,14,14 255,255,255 246,246,246 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 251,251,251 254,254,254 2,2,2 255,255,255 255,255,255 255,255,255 243,243,243 253,253,253 249,249,249 245,245,245 255,255,255 251,251,251 235,235,235 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 1,1,1 7,7,7 2,2,2 0,0,0 8,8,8 0,0,0 252,252,252 255,255,255 255,255,255 238,238,238 255,255,255 255,255,255 255,255,255 239,239,239 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 14,14,14 244,244,244 255,255,255 238,238,238 255,255,255 255,255,255 246,246,246 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 4,4,4 4,4,4 3,3,3 0,0,0 13,13,13 16,16,16 0,0,0 1,1,1 0,0,0 255,255,255 254,254,254 248,248,248 255,255,255 235,235,235 253,253,253 253,253,253 255,255,255 238,238,238 1,1,1 8,8,8 0,0,0 248,248,248 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 244,244,244 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 248,248,248 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 240,240,240 247,247,247 255,255,255 237,237,237 255,255,255 255,255,255 249,249,249 255,255,255 251,251,251 0,0,0 0,0,0 16,16,16 5,5,5 0,0,0 247,247,247 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 11,11,11 255,255,255 248,248,248 255,255,255 249,249,249 253,253,253 255,255,255 255,255,255 248,248,248 255,255,255 252,252,252 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 3,3,3 251,251,251 255,255,255 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 0,0,0 10,10,10 0,0,0 14,14,14 6,6,6 2,2,2 2,2,2 0,0,0 250,250,250 255,255,255 255,255,255 240,240,240 255,255,255 252,252,252 239,239,239 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 5,5,5 13,13,13 241,241,241 255,255,255 250,250,250 255,255,255 240,240,240 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 242,242,242 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 243,243,243 249,249,249 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 244,244,244 252,252,252 255,255,255 255,255,255 255,255,255 253,253,253 249,249,249 255,255,255 252,252,252 4,4,4 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 8,8,8 1,1,1 0,0,0 1,1,1 0,0,0 3,3,3 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 240,240,240 244,244,244 255,255,255 252,252,252 248,248,248 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 17,17,17 0,0,0 8,8,8 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 7,7,7 0,0,0 0,0,0 5,5,5 255,255,255 250,250,250 255,255,255 248,248,248 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 246,246,246 255,255,255 243,243,243 255,255,255 248,248,248 246,246,246 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 250,250,250 246,246,246 249,249,249 255,255,255 255,255,255 255,255,255 250,250,250 241,241,241 248,248,248 247,247,247 255,255,255 255,255,255 4,4,4 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 249,249,249 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 0,0,0 4,4,4 6,6,6 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 255,255,255 255,255,255 238,238,238 255,255,255 250,250,250 255,255,255 255,255,255 252,252,252 241,241,241 255,255,255 0,0,0 9,9,9 14,14,14 0,0,0 5,5,5 11,11,11 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 255,255,255 245,245,245 254,254,254 255,255,255 251,251,251 255,255,255 254,254,254 251,251,251 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 247,247,247 255,255,255 243,243,243 255,255,255 251,251,251 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 243,243,243 254,254,254 254,254,254 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 244,244,244 248,248,248 255,255,255 252,252,252 234,234,234 255,255,255 238,238,238 255,255,255 255,255,255 237,237,237 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 240,240,240 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 251,251,251 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 235,235,235 2,2,2 0,0,0 10,10,10 0,0,0 0,0,0 9,9,9 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 6,6,6 0,0,0 24,24,24 7,7,7 0,0,0 5,5,5 13,13,13 0,0,0 0,0,0 7,7,7 251,251,251 248,248,248 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 243,243,243 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 0,0,0 21,21,21 1,1,1 10,10,10 0,0,0 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 246,246,246 255,255,255 244,244,244 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 234,234,234 255,255,255 240,240,240 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 242,242,242 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 0,0,0 1,1,1 11,11,11 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 251,251,251 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 20,20,20 0,0,0 0,0,0 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 8,8,8 14,14,14 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 235,235,235 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 253,253,253 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 250,250,250 254,254,254 239,239,239 255,255,255 11,11,11 247,247,247 7,7,7 255,255,255 0,0,0 255,255,255 255,255,255 232,232,232 247,247,247 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 252,252,252 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 250,250,250 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 25,25,25 1,1,1 0,0,0 249,249,249 245,245,245 255,255,255 251,251,251 235,235,235 255,255,255 255,255,255 251,251,251 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 5,5,5 8,8,8 244,244,244 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 9,9,9 0,0,0 0,0,0 6,6,6 3,3,3 1,1,1 0,0,0 8,8,8 0,0,0 241,241,241 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 253,253,253 255,255,255 10,10,10 4,4,4 5,5,5 10,10,10 0,0,0 0,0,0 25,25,25 0,0,0 255,255,255 253,253,253 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 5,5,5 0,0,0 255,255,255 244,244,244 255,255,255 242,242,242 255,255,255 255,255,255 241,241,241 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 254,254,254 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 237,237,237 248,248,248 254,254,254 0,0,0 15,15,15 7,7,7 0,0,0 15,15,15 0,0,0 6,6,6 3,3,3 0,0,0 9,9,9 0,0,0 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 248,248,248 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 0,0,0 8,8,8 0,0,0 8,8,8 7,7,7 19,19,19 244,244,244 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 7,7,7 5,5,5 255,255,255 253,253,253 255,255,255 250,250,250 255,255,255 255,255,255 248,248,248 9,9,9 0,0,0 0,0,0 4,4,4 0,0,0 15,15,15 0,0,0 0,0,0 4,4,4 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 12,12,12 253,253,253 0,0,0 0,0,0 4,4,4 0,0,0 22,22,22 0,0,0 0,0,0 18,18,18 0,0,0 1,1,1 0,0,0 9,9,9 241,241,241 255,255,255 247,247,247 231,231,231 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 253,253,253 254,254,254 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 249,249,249 255,255,255 22,22,22 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 5,5,5 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 8,8,8 8,8,8 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 252,252,252 255,255,255 16,16,16 0,0,0 1,1,1 6,6,6 0,0,0 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 15,15,15 236,236,236 255,255,255 253,253,253 242,242,242 255,255,255 254,254,254 0,0,0 6,6,6 3,3,3 6,6,6 2,2,2 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 16,16,16 0,0,0 0,0,0 2,2,2 0,0,0 10,10,10 7,7,7 0,0,0 17,17,17 0,0,0 0,0,0 0,0,0 5,5,5 15,15,15 0,0,0 0,0,0 0,0,0 11,11,11 255,255,255 246,246,246 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 250,250,250 244,244,244 255,255,255 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 244,244,244 1,1,1 0,0,0 9,9,9 0,0,0 0,0,0 9,9,9 0,0,0 10,10,10 4,4,4 0,0,0 0,0,0 8,8,8 13,13,13 241,241,241 255,255,255 250,250,250 255,255,255 240,240,240 255,255,255 246,246,246 255,255,255 253,253,253 250,250,250 255,255,255 254,254,254 4,4,4 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 252,252,252 249,249,249 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 0,0,0 9,9,9 0,0,0 0,0,0 5,5,5 1,1,1 0,0,0 0,0,0 11,11,11 4,4,4 0,0,0 255,255,255 247,247,247 255,255,255 255,255,255 240,240,240 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 248,248,248 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 5,5,5 7,7,7 0,0,0 9,9,9 0,0,0 5,5,5 0,0,0 12,12,12 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 241,241,241 255,255,255 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 250,250,250 254,254,254 255,255,255 250,250,250 243,243,243 255,255,255 247,247,247 253,253,253 255,255,255 249,249,249 252,252,252 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 0,0,0 2,2,2 254,254,254 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 247,247,247 250,250,250 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 5,5,5 11,11,11 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 251,251,251 248,248,248 253,253,253 18,18,18 0,0,0 0,0,0 3,3,3 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 247,247,247 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 0,0,0 1,1,1 1,1,1 0,0,0 1,1,1 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 3,3,3 5,5,5 1,1,1 0,0,0 2,2,2 16,16,16 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 244,244,244 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 251,251,251 245,245,245 254,254,254 251,251,251 253,253,253 255,255,255 248,248,248 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 252,252,252 251,251,251 255,255,255 255,255,255 255,255,255 254,254,254 245,245,245 255,255,255 253,253,253 247,247,247 255,255,255 246,246,246 7,7,7 0,0,0 3,3,3 1,1,1 5,5,5 0,0,0 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 251,251,251 252,252,252 243,243,243 0,0,0 8,8,8 11,11,11 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 239,239,239 255,255,255 255,255,255 253,253,253 255,255,255 247,247,247 254,254,254 253,253,253 240,240,240 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 10,10,10 252,252,252 255,255,255 244,244,244 250,250,250 255,255,255 230,230,230 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 253,253,253 6,6,6 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 241,241,241 255,255,255 250,250,250 11,11,11 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 8,8,8 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 255,255,255 248,248,248 255,255,255 244,244,244 255,255,255 245,245,245 249,249,249 255,255,255 253,253,253 255,255,255 255,255,255 246,246,246 244,244,244 247,247,247 255,255,255 255,255,255 246,246,246 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 248,248,248 255,255,255 243,243,243 252,252,252 255,255,255 255,255,255 240,240,240 247,247,247 253,253,253 255,255,255 228,228,228 255,255,255 251,251,251 252,252,252 1,1,1 0,0,0 9,9,9 14,14,14 0,0,0 0,0,0 0,0,0 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 246,246,246 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 255,255,255 231,231,231 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 255,255,255 248,248,248 244,244,244 19,19,19 7,7,7 8,8,8 0,0,0 1,1,1 0,0,0 241,241,241 255,255,255 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 0,0,0 11,11,11 10,10,10 0,0,0 8,8,8 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 37,37,37 255,255,255 232,232,232 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 15,15,15 0,0,0 12,12,12 0,0,0 252,252,252 255,255,255 253,253,253 253,253,253 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 12,12,12 17,17,17 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 7,7,7 0,0,0 6,6,6 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 248,248,248 255,255,255 234,234,234 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 234,234,234 255,255,255 243,243,243 255,255,255 255,255,255 239,239,239 249,249,249 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 246,246,246 254,254,254 255,255,255 0,0,0 1,1,1 0,0,0 0,0,0 4,4,4 3,3,3 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 240,240,240 254,254,254 255,255,255 252,252,252 255,255,255 244,244,244 8,8,8 5,5,5 0,0,0 0,0,0 15,15,15 1,1,1 1,1,1 255,255,255 250,250,250 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 0,0,0 3,3,3 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 4,4,4 255,255,255 13,13,13 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 255,255,255 254,254,254 246,246,246 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 4,4,4 0,0,0 3,3,3 0,0,0 13,13,13 255,255,255 253,253,253 253,253,253 248,248,248 235,235,235 255,255,255 255,255,255 9,9,9 7,7,7 0,0,0 0,0,0 3,3,3 2,2,2 0,0,0 0,0,0 0,0,0 1,1,1 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 253,253,253 242,242,242 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 243,243,243 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 255,255,255 253,253,253 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 237,237,237 250,250,250 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 13,13,13 0,0,0 250,250,250 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 240,240,240 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 0,0,0 0,0,0 20,20,20 0,0,0 8,8,8 0,0,0 255,255,255 237,237,237 255,255,255 248,248,248 255,255,255 242,242,242 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 250,250,250 255,255,255 243,243,243 255,255,255 0,0,0 4,4,4 16,16,16 0,0,0 12,12,12 5,5,5 2,2,2 0,0,0 4,4,4 6,6,6 10,10,10 239,239,239 0,0,0 1,1,1 13,13,13 0,0,0 4,4,4 2,2,2 5,5,5 11,11,11 251,251,251 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 15,15,15 0,0,0 248,248,248 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 243,243,243 255,255,255 245,245,245 5,5,5 5,5,5 1,1,1 0,0,0 0,0,0 0,0,0 2,2,2 3,3,3 0,0,0 3,3,3 6,6,6 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 247,247,247 255,255,255 255,255,255 255,255,255 249,249,249 251,251,251 0,0,0 0,0,0 8,8,8 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 3,3,3 255,255,255 247,247,247 255,255,255 243,243,243 254,254,254 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 251,251,251 239,239,239 255,255,255 0,0,0 3,3,3 10,10,10 2,2,2 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 245,245,245 255,255,255 231,231,231 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 246,246,246 255,255,255 254,254,254 255,255,255 250,250,250 255,255,255 9,9,9 0,0,0 0,0,0 10,10,10 0,0,0 1,1,1 248,248,248 255,255,255 249,249,249 252,252,252 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 250,250,250 255,255,255 254,254,254 0,0,0 0,0,0 6,6,6 1,1,1 0,0,0 0,0,0 6,6,6 12,12,12 4,4,4 0,0,0 255,255,255 1,1,1 0,0,0 0,0,0 0,0,0 18,18,18 2,2,2 0,0,0 0,0,0 255,255,255 251,251,251 255,255,255 239,239,239 255,255,255 235,235,235 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 0,0,0 4,4,4 255,255,255 240,240,240 255,255,255 254,254,254 249,249,249 255,255,255 232,232,232 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 5,5,5 6,6,6 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 241,241,241 247,247,247 255,255,255 248,248,248 255,255,255 244,244,244 245,245,245 255,255,255 253,253,253 255,255,255 255,255,255 17,17,17 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 252,252,252 255,255,255 248,248,248 241,241,241 255,255,255 250,250,250 255,255,255 255,255,255 254,254,254 251,251,251 248,248,248 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 244,244,244 239,239,239 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 247,247,247 255,255,255 253,253,253 255,255,255 255,255,255 239,239,239 8,8,8 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 11,11,11 8,8,8 0,0,0 243,243,243 252,252,252 251,251,251 254,254,254 252,252,252 255,255,255 249,249,249 0,0,0 0,0,0 6,6,6 0,0,0 3,3,3 0,0,0 255,255,255 253,253,253 255,255,255 254,254,254 248,248,248 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 243,243,243 255,255,255 255,255,255 247,247,247 31,31,31 0,0,0 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 14,14,14 2,2,2 0,0,0 25,25,25 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 3,3,3 255,255,255 247,247,247 255,255,255 241,241,241 253,253,253 254,254,254 255,255,255 243,243,243 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 8,8,8 1,1,1 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 237,237,237 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 254,254,254 244,244,244 255,255,255 253,253,253 251,251,251 0,0,0 0,0,0 1,1,1 12,12,12 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 250,250,250 255,255,255 254,254,254 250,250,250 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 251,251,251 255,255,255 0,0,0 11,11,11 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 249,249,249 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 0,0,0 6,6,6 6,6,6 0,0,0 0,0,0 0,0,0 2,2,2 5,5,5 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 11,11,11 245,245,245 250,250,250 255,255,255 242,242,242 255,255,255 252,252,252 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 249,249,249 255,255,255 239,239,239 255,255,255 255,255,255 243,243,243 255,255,255 253,253,253 251,251,251 255,255,255 247,247,247 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 16,16,16 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 255,255,255 252,252,252 248,248,248 255,255,255 237,237,237 255,255,255 255,255,255 251,251,251 255,255,255 252,252,252 254,254,254 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 238,238,238 254,254,254 255,255,255 247,247,247 255,255,255 255,255,255 244,244,244 255,255,255 252,252,252 3,3,3 1,1,1 6,6,6 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 238,238,238 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 4,4,4 0,0,0 10,10,10 0,0,0 0,0,0 1,1,1 249,249,249 255,255,255 255,255,255 245,245,245 253,253,253 255,255,255 0,0,0 1,1,1 1,1,1 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 244,244,244 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 0,0,0 6,6,6 4,4,4 0,0,0 8,8,8 4,4,4 0,0,0 12,12,12 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 4,4,4 11,11,11 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 3,3,3 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 8,8,8 2,2,2 0,0,0 10,10,10 1,1,1 0,0,0 10,10,10 0,0,0 3,3,3 254,254,254 246,246,246 255,255,255 255,255,255 249,249,249 247,247,247 255,255,255 243,243,243 8,8,8 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 253,253,253 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 0,0,0 27,27,27 0,0,0 2,2,2 1,1,1 240,240,240 253,253,253 255,255,255 252,252,252 0,0,0 13,13,13 0,0,0 7,7,7 0,0,0 3,3,3 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 243,243,243 255,255,255 255,255,255 14,14,14 10,10,10 0,0,0 0,0,0 0,0,0 7,7,7 6,6,6 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 0,0,0 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 14,14,14 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 243,243,243 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 3,3,3 4,4,4 0,0,0 27,27,27 0,0,0 2,2,2 8,8,8 5,5,5 0,0,0 0,0,0 32,32,32 242,242,242 255,255,255 245,245,245 255,255,255 255,255,255 221,221,221 20,20,20 6,6,6 0,0,0 0,0,0 0,0,0 17,17,17 10,10,10 0,0,0 248,248,248 255,255,255 248,248,248 255,255,255 250,250,250 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 22,22,22 0,0,0 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 16,16,16 243,243,243 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 252,252,252 255,255,255 253,253,253 255,255,255 255,255,255 218,218,218 0,0,0 0,0,0 4,4,4 12,12,12 6,6,6 0,0,0 0,0,0 1,1,1 6,6,6 0,0,0 13,13,13 5,5,5 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 5,5,5 7,7,7 2,2,2 13,13,13 0,0,0 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 9,9,9 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 22,22,22 4,4,4 0,0,0 12,12,12 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 18,18,18 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 235,235,235 247,247,247 237,237,237 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 12,12,12 0,0,0 1,1,1 1,1,1 15,15,15 0,0,0 5,5,5 5,5,5 0,0,0 3,3,3 244,244,244 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 2,2,2 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 252,252,252 248,248,248 255,255,255 255,255,255 251,251,251 10,10,10 6,6,6 4,4,4 0,0,0 2,2,2 5,5,5 12,12,12 0,0,0 11,11,11 0,0,0 4,4,4 15,15,15 11,11,11 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 241,241,241 0,0,0 8,8,8 0,0,0 1,1,1 3,3,3 11,11,11 0,0,0 0,0,0 9,9,9 6,6,6 0,0,0 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 5,5,5 6,6,6 0,0,0 1,1,1 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 243,243,243 11,11,11 0,0,0 10,10,10 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 0,0,0 17,17,17 8,8,8 0,0,0 0,0,0 4,4,4 1,1,1 2,2,2 6,6,6 14,14,14 255,255,255 253,253,253 0,0,0 8,8,8 6,6,6 11,11,11 0,0,0 5,5,5 252,252,252 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 250,250,250 253,253,253 255,255,255 251,251,251 249,249,249 245,245,245 4,4,4 0,0,0 0,0,0 7,7,7 3,3,3 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 0,0,0 245,245,245 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 235,235,235 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 18,18,18 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 0,0,0 16,16,16 4,4,4 0,0,0 2,2,2 0,0,0 9,9,9 6,6,6 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 253,253,253 249,249,249 3,3,3 2,2,2 3,3,3 6,6,6 3,3,3 7,7,7 5,5,5 244,244,244 255,255,255 249,249,249 248,248,248 255,255,255 242,242,242 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 250,250,250 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 2,2,2 252,252,252 3,3,3 2,2,2 0,0,0 3,3,3 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 254,254,254 255,255,255 255,255,255 249,249,249 243,243,243 251,251,251 255,255,255 255,255,255 37,37,37 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 8,8,8 0,0,0 5,5,5 0,0,0 0,0,0 7,7,7 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 251,251,251 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 7,7,7 4,4,4 1,1,1 0,0,0 0,0,0 9,9,9 0,0,0 4,4,4 21,21,21 0,0,0 13,13,13 252,252,252 5,5,5 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 251,251,251 246,246,246 250,250,250 250,250,250 255,255,255 247,247,247 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 2,2,2 0,0,0 9,9,9 5,5,5 0,0,0 6,6,6 0,0,0 14,14,14 0,0,0 3,3,3 20,20,20 0,0,0 14,14,14 253,253,253 10,10,10 0,0,0 14,14,14 0,0,0 5,5,5 0,0,0 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 255,255,255 245,245,245 241,241,241 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 20,20,20 249,249,249 250,250,250 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 255,255,255 0,0,0 7,7,7 1,1,1 0,0,0 5,5,5 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 11,11,11 3,3,3 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 10,10,10 0,0,0 19,19,19 247,247,247 255,255,255 235,235,235 255,255,255 255,255,255 245,245,245 253,253,253 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 250,250,250 9,9,9 0,0,0 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 11,11,11 5,5,5 0,0,0 2,2,2 4,4,4 6,6,6 245,245,245 255,255,255 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 254,254,254 255,255,255 1,1,1 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 17,17,17 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 254,254,254 252,252,252 3,3,3 0,0,0 11,11,11 0,0,0 1,1,1 0,0,0 5,5,5 1,1,1 2,2,2 15,15,15 0,0,0 8,8,8 3,3,3 0,0,0 4,4,4 3,3,3 0,0,0 0,0,0 249,249,249 255,255,255 244,244,244 255,255,255 254,254,254 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 245,245,245 255,255,255 0,0,0 3,3,3 12,12,12 0,0,0 0,0,0 1,1,1 7,7,7 5,5,5 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 253,253,253 255,255,255 5,5,5 0,0,0 1,1,1 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 245,245,245 255,255,255 0,0,0 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 0,0,0 11,11,11 248,248,248 246,246,246 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 19,19,19 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 18,18,18 246,246,246 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 13,13,13 252,252,252 240,240,240 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 250,250,250 230,230,230 249,249,249 255,255,255 0,0,0 5,5,5 17,17,17 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 1,1,1 6,6,6 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 251,251,251 6,6,6 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 3,3,3 1,1,1 0,0,0 255,255,255 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 255,255,255 234,234,234 0,0,0 9,9,9 0,0,0 18,18,18 0,0,0 0,0,0 17,17,17 1,1,1 236,236,236 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 13,13,13 5,5,5 1,1,1 255,255,255 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 0,0,0 4,4,4 17,17,17 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 2,2,2 0,0,0 5,5,5 2,2,2 255,255,255 239,239,239 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 250,250,250 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 16,16,16 0,0,0 247,247,247 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 244,244,244 242,242,242 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 2,2,2 0,0,0 249,249,249 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 252,252,252 246,246,246 255,255,255 0,0,0 12,12,12 15,15,15 0,0,0 0,0,0 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 243,243,243 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 250,250,250 255,255,255 255,255,255 3,3,3 0,0,0 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 244,244,244 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 255,255,255 3,3,3 0,0,0 5,5,5 6,6,6 17,17,17 0,0,0 5,5,5 1,1,1 249,249,249 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 18,18,18 0,0,0 5,5,5 255,255,255 255,255,255 250,250,250 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 250,250,250 0,0,0 3,3,3 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 232,232,232 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 229,229,229 255,255,255 251,251,251 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 238,238,238 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 9,9,9 0,0,0 1,1,1 0,0,0 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 251,251,251 251,251,251 255,255,255 254,254,254 255,255,255 234,234,234 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 5,5,5 0,0,0 6,6,6 238,238,238 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 24,24,24 0,0,0 9,9,9 0,0,0 8,8,8 0,0,0 0,0,0 5,5,5 9,9,9 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 248,248,248 255,255,255 243,243,243 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 0,0,0 11,11,11 0,0,0 11,11,11 0,0,0 2,2,2 0,0,0 0,0,0 252,252,252 254,254,254 253,253,253 251,251,251 255,255,255 248,248,248 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 2,2,2 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 246,246,246 234,234,234 22,22,22 0,0,0 0,0,0 6,6,6 7,7,7 15,15,15 0,0,0 0,0,0 13,13,13 0,0,0 12,12,12 0,0,0 7,7,7 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 250,250,250 254,254,254 245,245,245 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 246,246,246 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 2,2,2 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 253,253,253 255,255,255 252,252,252 252,252,252 249,249,249 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 12,12,12 0,0,0 5,5,5 0,0,0 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 249,249,249 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 10,10,10 0,0,0 0,0,0 14,14,14 0,0,0 12,12,12 0,0,0 8,8,8 0,0,0 4,4,4 0,0,0 12,12,12 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 8,8,8 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 11,11,11 0,0,0 12,12,12 0,0,0 255,255,255 254,254,254 248,248,248 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 254,254,254 237,237,237 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 4,4,4 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 3,3,3 8,8,8 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 247,247,247 255,255,255 251,251,251 253,253,253 255,255,255 243,243,243 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 17,17,17 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 14,14,14 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 251,251,251 252,252,252 238,238,238 255,255,255 255,255,255 245,245,245 253,253,253 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 244,244,244 255,255,255 249,249,249 255,255,255 255,255,255 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 0,0,0 9,9,9 1,1,1 2,2,2 6,6,6 0,0,0 0,0,0 9,9,9 0,0,0 20,20,20 230,230,230 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 249,249,249 243,243,243 255,255,255 255,255,255 0,0,0 15,15,15 19,19,19 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 231,231,231 255,255,255 243,243,243 255,255,255 254,254,254 253,253,253 246,246,246 255,255,255 252,252,252 20,20,20 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 11,11,11 6,6,6 0,0,0 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 233,233,233 255,255,255 15,15,15 0,0,0 12,12,12 1,1,1 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 225,225,225 255,255,255 251,251,251 229,229,229 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 11,11,11 14,14,14 0,0,0 3,3,3 255,255,255 255,255,255 252,252,252 247,247,247 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 252,252,252 255,255,255 0,0,0 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 6,6,6 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 11,11,11 11,11,11 0,0,0 6,6,6 2,2,2 0,0,0 0,0,0 0,0,0 255,255,255 254,254,254 255,255,255 255,255,255 232,232,232 255,255,255 249,249,249 255,255,255 253,253,253 255,255,255 9,9,9 0,0,0 0,0,0 0,0,0 2,2,2 6,6,6 5,5,5 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 241,241,241 242,242,242 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 13,13,13 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 17,17,17 8,8,8 227,227,227 249,249,249 255,255,255 248,248,248 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 248,248,248 254,254,254 1,1,1 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 7,7,7 2,2,2 11,11,11 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 2,2,2 0,0,0 248,248,248 0,0,0 19,19,19 0,0,0 5,5,5 245,245,245 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 255,255,255 241,241,241 253,253,253 15,15,15 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 1,1,1 8,8,8 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 254,254,254 242,242,242 9,9,9 0,0,0 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 255,255,255 248,248,248 253,253,253 250,250,250 235,235,235 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 239,239,239 4,4,4 0,0,0 14,14,14 2,2,2 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 250,250,250 244,244,244 255,255,255 248,248,248 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 250,250,250 8,8,8 6,6,6 4,4,4 2,2,2 0,0,0 0,0,0 9,9,9 4,4,4 0,0,0 0,0,0 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 13,13,13 0,0,0 16,16,16 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 7,7,7 9,9,9 255,255,255 255,255,255 235,235,235 248,248,248 253,253,253 255,255,255 255,255,255 0,0,0 12,12,12 1,1,1 7,7,7 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 252,252,252 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 252,252,252 255,255,255 5,5,5 0,0,0 10,10,10 0,0,0 10,10,10 6,6,6 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 1,1,1 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 253,253,253 15,15,15 2,2,2 0,0,0 7,7,7 0,0,0 4,4,4 13,13,13 255,255,255 249,249,249 253,253,253 255,255,255 255,255,255 255,255,255 242,242,242 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 21,21,21 0,0,0 6,6,6 16,16,16 250,250,250 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 0,0,0 19,19,19 238,238,238 236,236,236 7,7,7 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 11,11,11 12,12,12 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 249,249,249 253,253,253 255,255,255 250,250,250 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 5,5,5 5,5,5 4,4,4 248,248,248 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 4,4,4 244,244,244 255,255,255 249,249,249 249,249,249 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 250,250,250 255,255,255 0,0,0 0,0,0 8,8,8 2,2,2 0,0,0 0,0,0 1,1,1 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 1,1,1 2,2,2 248,248,248 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 23,23,23 7,7,7 0,0,0 0,0,0 4,4,4 16,16,16 0,0,0 13,13,13 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 26,26,26 0,0,0 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 255,255,255 0,0,0 0,0,0 7,7,7 2,2,2 0,0,0 15,15,15 6,6,6 3,3,3 5,5,5 253,253,253 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 0,0,0 0,0,0 5,5,5 247,247,247 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 0,0,0 4,4,4 1,1,1 0,0,0 0,0,0 23,23,23 246,246,246 255,255,255 248,248,248 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 4,4,4 0,0,0 4,4,4 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 255,255,255 249,249,249 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 252,252,252 255,255,255 5,5,5 3,3,3 3,3,3 5,5,5 0,0,0 0,0,0 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 0,0,0 8,8,8 12,12,12 0,0,0 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 243,243,243 255,255,255 6,6,6 8,8,8 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 255,255,255 248,248,248 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 2,2,2 0,0,0 10,10,10 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 253,253,253 249,249,249 255,255,255 252,252,252 2,2,2 3,3,3 0,0,0 1,1,1 0,0,0 1,1,1 8,8,8 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 0,0,0 2,2,2 0,0,0 4,4,4 1,1,1 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 254,254,254 248,248,248 250,250,250 254,254,254 248,248,248 255,255,255 251,251,251 255,255,255 252,252,252 255,255,255 255,255,255 244,244,244 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 254,254,254 252,252,252 255,255,255 10,10,10 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 3,3,3 4,4,4 0,0,0 255,255,255 250,250,250 255,255,255 254,254,254 244,244,244 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 241,241,241 248,248,248 247,247,247 255,255,255 255,255,255 4,4,4 0,0,0 1,1,1 0,0,0 3,3,3 6,6,6 4,4,4 0,0,0 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 248,248,248 255,255,255 11,11,11 5,5,5 3,3,3 0,0,0 0,0,0 0,0,0 11,11,11 19,19,19 0,0,0 1,1,1 18,18,18 0,0,0 7,7,7 0,0,0 0,0,0 1,1,1 1,1,1 254,254,254 247,247,247 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 245,245,245 255,255,255 255,255,255 232,232,232 255,255,255 255,255,255 249,249,249 0,0,0 9,9,9 0,0,0 16,16,16 4,4,4 4,4,4 3,3,3 8,8,8 1,1,1 246,246,246 251,251,251 255,255,255 255,255,255 241,241,241 254,254,254 14,14,14 0,0,0 2,2,2 2,2,2 3,3,3 8,8,8 0,0,0 17,17,17 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 235,235,235 2,2,2 5,5,5 0,0,0 7,7,7 24,24,24 0,0,0 6,6,6 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 250,250,250 255,255,255 246,246,246 0,0,0 0,0,0 3,3,3 26,26,26 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 14,14,14 19,19,19 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 246,246,246 242,242,242 255,255,255 255,255,255 251,251,251 255,255,255 253,253,253 255,255,255 255,255,255 251,251,251 244,244,244 12,12,12 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 243,243,243 254,254,254 255,255,255 250,250,250 6,6,6 6,6,6 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 253,253,253 255,255,255 218,218,218 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 14,14,14 8,8,8 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 242,242,242 255,255,255 255,255,255 254,254,254 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 15,15,15 6,6,6 8,8,8 21,21,21 0,0,0 1,1,1 0,0,0 251,251,251 255,255,255 230,230,230 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 248,248,248 255,255,255 248,248,248 246,246,246 255,255,255 248,248,248 255,255,255 2,2,2 0,0,0 0,0,0 11,11,11 0,0,0 8,8,8 12,12,12 3,3,3 255,255,255 244,244,244 245,245,245 239,239,239 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 255,255,255 4,4,4 0,0,0 12,12,12 1,1,1 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 9,9,9 0,0,0 18,18,18 1,1,1 255,255,255 254,254,254 243,243,243 255,255,255 255,255,255 243,243,243 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 9,9,9 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 247,247,247 255,255,255 254,254,254 255,255,255 251,251,251 255,255,255 0,0,0 6,6,6 5,5,5 2,2,2 3,3,3 0,0,0 3,3,3 0,0,0 5,5,5 0,0,0 255,255,255 250,250,250 255,255,255 255,255,255 237,237,237 255,255,255 241,241,241 255,255,255 247,247,247 255,255,255 243,243,243 253,253,253 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 5,5,5 0,0,0 15,15,15 1,1,1 0,0,0 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 0,0,0 0,0,0 0,0,0 8,8,8 7,7,7 2,2,2 0,0,0 12,12,12 13,13,13 0,0,0 0,0,0 238,238,238 253,253,253 246,246,246 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 250,250,250 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 255,255,255 255,255,255 254,254,254 241,241,241 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 254,254,254 20,20,20 0,0,0 255,255,255 242,242,242 255,255,255 239,239,239 255,255,255 253,253,253 228,228,228 255,255,255 243,243,243 255,255,255 248,248,248 249,249,249 255,255,255 254,254,254 255,255,255 250,250,250 248,248,248 11,11,11 0,0,0 16,16,16 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 238,238,238 255,255,255 254,254,254 241,241,241 249,249,249 255,255,255 235,235,235 239,239,239 255,255,255 252,252,252 255,255,255 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 15,15,15 0,0,0 255,255,255 252,252,252 255,255,255 247,247,247 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 1,1,1 0,0,0 16,16,16 255,255,255 252,252,252 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 244,244,244 255,255,255 244,244,244 248,248,248 255,255,255 255,255,255 251,251,251 241,241,241 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 233,233,233 255,255,255 245,245,245 255,255,255 251,251,251 248,248,248 255,255,255 255,255,255 240,240,240 255,255,255 255,255,255 255,255,255 241,241,241 245,245,245 245,245,245 255,255,255 253,253,253 0,0,0 12,12,12 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 248,248,248 244,244,244 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 251,251,251 0,0,0 0,0,0 16,16,16 255,255,255 244,244,244 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 235,235,235 255,255,255 246,246,246 252,252,252 255,255,255 248,248,248 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 254,254,254 4,4,4 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 9,9,9 0,0,0 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 241,241,241 255,255,255 255,255,255 251,251,251 255,255,255 250,250,250 250,250,250 254,254,254 255,255,255 255,255,255 231,231,231 254,254,254 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 245,245,245 255,255,255 255,255,255 245,245,245 247,247,247 255,255,255 248,248,248 253,253,253 245,245,245 255,255,255 255,255,255 252,252,252 244,244,244 9,9,9 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 247,247,247 249,249,249 247,247,247 255,255,255 248,248,248 254,254,254 17,17,17 255,255,255 242,242,242 252,252,252 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 238,238,238 255,255,255 243,243,243 255,255,255 243,243,243 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 250,250,250 11,11,11 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 1,1,1 0,0,0 246,246,246 255,255,255 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 253,253,253 0,0,0 0,0,0 1,1,1 4,4,4 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 252,252,252 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 242,242,242 255,255,255 1,1,1 0,0,0 0,0,0 1,1,1 2,2,2 5,5,5 0,0,0 13,13,13 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 13,13,13 4,4,4 3,3,3 2,2,2 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 246,246,246 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 25,25,25 223,223,223 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 2,2,2 7,7,7 0,0,0 0,0,0 8,8,8 0,0,0 242,242,242 255,255,255 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 253,253,253 246,246,246 255,255,255 12,12,12 2,2,2 0,0,0 0,0,0 10,10,10 234,234,234 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 249,249,249 249,249,249 255,255,255 255,255,255 255,255,255 247,247,247 238,238,238 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 254,254,254 255,255,255 0,0,0 7,7,7 0,0,0 3,3,3 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 247,247,247 252,252,252 23,23,23 0,0,0 3,3,3 255,255,255 239,239,239 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 249,249,249 255,255,255 253,253,253 255,255,255 250,250,250 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 17,17,17 3,3,3 0,0,0 4,4,4 250,250,250 250,250,250 255,255,255 245,245,245 250,250,250 255,255,255 246,246,246 244,244,244 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 242,242,242 255,255,255 246,246,246 245,245,245 255,255,255 255,255,255 255,255,255 232,232,232 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 237,237,237 255,255,255 255,255,255 244,244,244 250,250,250 255,255,255 238,238,238 247,247,247 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 239,239,239 255,255,255 255,255,255 248,248,248 247,247,247 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 251,251,251 251,251,251 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 237,237,237 255,255,255 251,251,251 255,255,255 255,255,255 246,246,246 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 255,255,255 252,252,252 255,255,255 250,250,250 255,255,255 252,252,252 251,251,251 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 252,252,252 255,255,255 246,246,246 254,254,254 255,255,255 255,255,255 234,234,234 255,255,255 255,255,255 249,249,249 249,249,249 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 237,237,237 255,255,255 248,248,248 255,255,255 255,255,255 248,248,248 241,241,241 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 242,242,242 255,255,255 241,241,241 239,239,239 255,255,255 252,252,252 255,255,255 251,251,251 254,254,254 245,245,245 250,250,250 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 254,254,254 252,252,252 255,255,255 255,255,255 249,249,249 254,254,254 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 251,251,251 245,245,245 255,255,255 251,251,251 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 253,253,253 253,253,253 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/99_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/99_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_noised.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_original.txt new file mode 100644 index 0000000..fac811f --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/99_original.txt @@ -0,0 +1,100 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 250,250,250 255,255,255 252,252,252 255,255,255 249,249,249 249,249,249 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 249,249,249 255,255,255 243,243,243 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 254,254,254 255,255,255 249,249,249 249,249,249 255,255,255 253,253,253 255,255,255 231,231,231 255,255,255 255,255,255 244,244,244 245,245,245 255,255,255 245,245,245 255,255,255 241,241,241 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 248,248,248 253,253,253 255,255,255 248,248,248 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 251,251,251 252,252,252 255,255,255 255,255,255 253,253,253 246,246,246 255,255,255 255,255,255 250,250,250 243,243,243 250,250,250 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 250,250,250 237,237,237 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 236,236,236 254,254,254 241,241,241 255,255,255 255,255,255 254,254,254 242,242,242 250,250,250 255,255,255 252,252,252 251,251,251 246,246,246 255,255,255 255,255,255 255,255,255 247,247,247 253,253,253 248,248,248 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 243,243,243 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 253,253,253 254,254,254 255,255,255 245,245,245 0,0,0 10,10,10 0,0,0 1,1,1 8,8,8 3,3,3 0,0,0 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 243,243,243 239,239,239 253,253,253 255,255,255 241,241,241 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 250,250,250 255,255,255 240,240,240 246,246,246 248,248,248 247,247,247 255,255,255 244,244,244 10,10,10 0,0,0 0,0,0 6,6,6 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 242,242,242 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 248,248,248 253,253,253 255,255,255 239,239,239 255,255,255 255,255,255 8,8,8 0,0,0 244,244,244 252,252,252 255,255,255 15,15,15 8,8,8 0,0,0 13,13,13 0,0,0 0,0,0 2,2,2 3,3,3 14,14,14 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 17,17,17 237,237,237 247,247,247 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 245,245,245 0,0,0 15,15,15 0,0,0 4,4,4 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 6,6,6 8,8,8 0,0,0 7,7,7 0,0,0 9,9,9 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 249,249,249 0,0,0 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 11,11,11 11,11,11 250,250,250 255,255,255 255,255,255 246,246,246 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 244,244,244 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 251,251,251 255,255,255 253,253,253 0,0,0 19,19,19 3,3,3 0,0,0 12,12,12 3,3,3 255,255,255 248,248,248 243,243,243 255,255,255 250,250,250 255,255,255 246,246,246 251,251,251 251,251,251 255,255,255 253,253,253 254,254,254 255,255,255 245,245,245 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 0,0,0 21,21,21 10,10,10 8,8,8 14,14,14 0,0,0 245,245,245 243,243,243 255,255,255 252,252,252 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 255,255,255 242,242,242 253,253,253 250,250,250 255,255,255 250,250,250 249,249,249 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 0,0,0 22,22,22 0,0,0 0,0,0 15,15,15 0,0,0 5,5,5 0,0,0 10,10,10 255,255,255 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 248,248,248 248,248,248 255,255,255 244,244,244 255,255,255 244,244,244 245,245,245 253,253,253 255,255,255 255,255,255 250,250,250 246,246,246 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 228,228,228 255,255,255 255,255,255 246,246,246 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 247,247,247 250,250,250 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 2,2,2 8,8,8 2,2,2 255,255,255 236,236,236 247,247,247 251,251,251 255,255,255 236,236,236 251,251,251 255,255,255 255,255,255 251,251,251 255,255,255 246,246,246 255,255,255 251,251,251 240,240,240 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 10,10,10 0,0,0 3,3,3 8,8,8 3,3,3 0,0,0 248,248,248 230,230,230 255,255,255 251,251,251 253,253,253 252,252,252 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 255,255,255 241,241,241 255,255,255 249,249,249 253,253,253 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 11,11,11 11,11,11 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 249,249,249 248,248,248 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 251,251,251 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 11,11,11 0,0,0 2,2,2 6,6,6 1,1,1 0,0,0 0,0,0 254,254,254 255,255,255 251,251,251 255,255,255 251,251,251 255,255,255 247,247,247 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 255,255,255 247,247,247 250,250,250 254,254,254 248,248,248 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 255,255,255 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 11,11,11 14,14,14 255,255,255 246,246,246 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 251,251,251 254,254,254 2,2,2 255,255,255 255,255,255 255,255,255 243,243,243 253,253,253 249,249,249 245,245,245 255,255,255 251,251,251 235,235,235 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 1,1,1 7,7,7 2,2,2 0,0,0 8,8,8 0,0,0 252,252,252 255,255,255 255,255,255 238,238,238 255,255,255 255,255,255 255,255,255 239,239,239 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 14,14,14 244,244,244 255,255,255 238,238,238 255,255,255 255,255,255 246,246,246 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 4,4,4 4,4,4 3,3,3 0,0,0 13,13,13 16,16,16 0,0,0 1,1,1 0,0,0 255,255,255 254,254,254 248,248,248 255,255,255 235,235,235 253,253,253 253,253,253 255,255,255 238,238,238 1,1,1 8,8,8 0,0,0 248,248,248 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 244,244,244 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 248,248,248 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 240,240,240 247,247,247 255,255,255 237,237,237 255,255,255 255,255,255 249,249,249 255,255,255 251,251,251 0,0,0 0,0,0 16,16,16 5,5,5 0,0,0 247,247,247 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 11,11,11 255,255,255 248,248,248 255,255,255 249,249,249 253,253,253 255,255,255 255,255,255 248,248,248 255,255,255 252,252,252 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 3,3,3 251,251,251 255,255,255 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 0,0,0 10,10,10 0,0,0 14,14,14 6,6,6 2,2,2 2,2,2 0,0,0 250,250,250 255,255,255 255,255,255 240,240,240 255,255,255 252,252,252 239,239,239 255,255,255 255,255,255 255,255,255 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 5,5,5 13,13,13 241,241,241 255,255,255 250,250,250 255,255,255 240,240,240 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 242,242,242 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 243,243,243 249,249,249 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 244,244,244 252,252,252 255,255,255 255,255,255 255,255,255 253,253,253 249,249,249 255,255,255 252,252,252 4,4,4 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 8,8,8 1,1,1 0,0,0 1,1,1 0,0,0 3,3,3 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 240,240,240 244,244,244 255,255,255 252,252,252 248,248,248 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 17,17,17 0,0,0 8,8,8 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 7,7,7 0,0,0 0,0,0 5,5,5 255,255,255 250,250,250 255,255,255 248,248,248 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 246,246,246 255,255,255 243,243,243 255,255,255 248,248,248 246,246,246 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 250,250,250 246,246,246 249,249,249 255,255,255 255,255,255 255,255,255 250,250,250 241,241,241 248,248,248 247,247,247 255,255,255 255,255,255 4,4,4 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 249,249,249 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 0,0,0 4,4,4 6,6,6 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 255,255,255 255,255,255 238,238,238 255,255,255 250,250,250 255,255,255 255,255,255 252,252,252 241,241,241 255,255,255 0,0,0 9,9,9 14,14,14 0,0,0 5,5,5 11,11,11 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 255,255,255 245,245,245 254,254,254 255,255,255 251,251,251 255,255,255 254,254,254 251,251,251 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 247,247,247 255,255,255 243,243,243 255,255,255 251,251,251 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 243,243,243 254,254,254 254,254,254 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 244,244,244 248,248,248 255,255,255 252,252,252 234,234,234 255,255,255 238,238,238 255,255,255 255,255,255 237,237,237 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 240,240,240 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 251,251,251 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 235,235,235 2,2,2 0,0,0 10,10,10 0,0,0 0,0,0 9,9,9 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 6,6,6 0,0,0 24,24,24 7,7,7 0,0,0 5,5,5 13,13,13 0,0,0 0,0,0 7,7,7 251,251,251 248,248,248 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 243,243,243 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 0,0,0 21,21,21 1,1,1 10,10,10 0,0,0 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 0,0,0 2,2,2 255,255,255 246,246,246 255,255,255 244,244,244 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 234,234,234 255,255,255 240,240,240 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 242,242,242 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 0,0,0 1,1,1 11,11,11 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 251,251,251 253,253,253 255,255,255 252,252,252 252,252,252 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 20,20,20 0,0,0 0,0,0 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 8,8,8 14,14,14 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 255,255,255 235,235,235 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 253,253,253 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 250,250,250 254,254,254 239,239,239 255,255,255 11,11,11 247,247,247 7,7,7 255,255,255 0,0,0 255,255,255 255,255,255 232,232,232 247,247,247 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 247,247,247 255,255,255 255,255,255 251,251,251 252,252,252 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 250,250,250 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 25,25,25 1,1,1 0,0,0 249,249,249 245,245,245 255,255,255 251,251,251 235,235,235 255,255,255 255,255,255 251,251,251 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 5,5,5 8,8,8 244,244,244 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 9,9,9 0,0,0 0,0,0 6,6,6 3,3,3 1,1,1 0,0,0 8,8,8 0,0,0 241,241,241 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 253,253,253 255,255,255 10,10,10 4,4,4 5,5,5 10,10,10 0,0,0 0,0,0 25,25,25 0,0,0 255,255,255 253,253,253 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 5,5,5 0,0,0 255,255,255 244,244,244 255,255,255 242,242,242 255,255,255 255,255,255 241,241,241 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 254,254,254 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 237,237,237 248,248,248 254,254,254 0,0,0 15,15,15 7,7,7 0,0,0 15,15,15 0,0,0 6,6,6 3,3,3 0,0,0 9,9,9 0,0,0 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 248,248,248 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 0,0,0 8,8,8 0,0,0 8,8,8 7,7,7 19,19,19 244,244,244 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 7,7,7 5,5,5 255,255,255 253,253,253 255,255,255 250,250,250 255,255,255 255,255,255 248,248,248 9,9,9 0,0,0 0,0,0 4,4,4 0,0,0 15,15,15 0,0,0 0,0,0 4,4,4 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 12,12,12 253,253,253 0,0,0 0,0,0 4,4,4 0,0,0 22,22,22 0,0,0 0,0,0 18,18,18 0,0,0 1,1,1 0,0,0 9,9,9 241,241,241 255,255,255 247,247,247 231,231,231 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 253,253,253 254,254,254 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 249,249,249 255,255,255 22,22,22 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 5,5,5 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 8,8,8 8,8,8 0,0,0 11,11,11 0,0,0 255,255,255 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 252,252,252 255,255,255 16,16,16 0,0,0 1,1,1 6,6,6 0,0,0 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 15,15,15 236,236,236 255,255,255 253,253,253 242,242,242 255,255,255 254,254,254 0,0,0 6,6,6 3,3,3 6,6,6 2,2,2 0,0,0 16,16,16 0,0,0 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 16,16,16 0,0,0 0,0,0 2,2,2 0,0,0 10,10,10 7,7,7 0,0,0 17,17,17 0,0,0 0,0,0 0,0,0 5,5,5 15,15,15 0,0,0 0,0,0 0,0,0 11,11,11 255,255,255 246,246,246 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 250,250,250 244,244,244 255,255,255 3,3,3 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 244,244,244 1,1,1 0,0,0 9,9,9 0,0,0 0,0,0 9,9,9 0,0,0 10,10,10 4,4,4 0,0,0 0,0,0 8,8,8 13,13,13 241,241,241 255,255,255 250,250,250 255,255,255 240,240,240 255,255,255 246,246,246 255,255,255 253,253,253 250,250,250 255,255,255 254,254,254 4,4,4 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 252,252,252 249,249,249 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 0,0,0 9,9,9 0,0,0 0,0,0 5,5,5 1,1,1 0,0,0 0,0,0 11,11,11 4,4,4 0,0,0 255,255,255 247,247,247 255,255,255 255,255,255 240,240,240 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 248,248,248 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 5,5,5 7,7,7 0,0,0 9,9,9 0,0,0 5,5,5 0,0,0 12,12,12 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 241,241,241 255,255,255 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 250,250,250 254,254,254 255,255,255 250,250,250 243,243,243 255,255,255 247,247,247 253,253,253 255,255,255 249,249,249 252,252,252 255,255,255 0,0,0 8,8,8 0,0,0 1,1,1 0,0,0 2,2,2 254,254,254 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 247,247,247 250,250,250 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 5,5,5 11,11,11 0,0,0 0,0,0 8,8,8 0,0,0 255,255,255 251,251,251 248,248,248 253,253,253 18,18,18 0,0,0 0,0,0 3,3,3 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 255,255,255 247,247,247 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 0,0,0 1,1,1 1,1,1 0,0,0 1,1,1 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 3,3,3 5,5,5 1,1,1 0,0,0 2,2,2 16,16,16 0,0,0 8,8,8 0,0,0 255,255,255 255,255,255 244,244,244 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 251,251,251 245,245,245 254,254,254 251,251,251 253,253,253 255,255,255 248,248,248 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 252,252,252 251,251,251 255,255,255 255,255,255 255,255,255 254,254,254 245,245,245 255,255,255 253,253,253 247,247,247 255,255,255 246,246,246 7,7,7 0,0,0 3,3,3 1,1,1 5,5,5 0,0,0 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 251,251,251 252,252,252 243,243,243 0,0,0 8,8,8 11,11,11 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 239,239,239 255,255,255 255,255,255 253,253,253 255,255,255 247,247,247 254,254,254 253,253,253 240,240,240 255,255,255 255,255,255 0,0,0 11,11,11 0,0,0 8,8,8 0,0,0 10,10,10 252,252,252 255,255,255 244,244,244 250,250,250 255,255,255 230,230,230 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 253,253,253 6,6,6 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 12,12,12 0,0,0 0,0,0 241,241,241 255,255,255 250,250,250 11,11,11 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 8,8,8 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 255,255,255 248,248,248 255,255,255 244,244,244 255,255,255 245,245,245 249,249,249 255,255,255 253,253,253 255,255,255 255,255,255 246,246,246 244,244,244 247,247,247 255,255,255 255,255,255 246,246,246 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 248,248,248 255,255,255 243,243,243 252,252,252 255,255,255 255,255,255 240,240,240 247,247,247 253,253,253 255,255,255 228,228,228 255,255,255 251,251,251 252,252,252 1,1,1 0,0,0 9,9,9 14,14,14 0,0,0 0,0,0 0,0,0 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 246,246,246 255,255,255 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 255,255,255 231,231,231 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 255,255,255 248,248,248 244,244,244 19,19,19 7,7,7 8,8,8 0,0,0 1,1,1 0,0,0 241,241,241 255,255,255 255,255,255 240,240,240 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 0,0,0 11,11,11 10,10,10 0,0,0 8,8,8 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 37,37,37 255,255,255 232,232,232 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 15,15,15 0,0,0 12,12,12 0,0,0 252,252,252 255,255,255 253,253,253 253,253,253 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 12,12,12 17,17,17 0,0,0 0,0,0 6,6,6 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 7,7,7 0,0,0 6,6,6 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 248,248,248 255,255,255 234,234,234 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 234,234,234 255,255,255 243,243,243 255,255,255 255,255,255 239,239,239 249,249,249 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 246,246,246 254,254,254 255,255,255 0,0,0 1,1,1 0,0,0 0,0,0 4,4,4 3,3,3 12,12,12 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 240,240,240 254,254,254 255,255,255 252,252,252 255,255,255 244,244,244 8,8,8 5,5,5 0,0,0 0,0,0 15,15,15 1,1,1 1,1,1 255,255,255 250,250,250 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 0,0,0 3,3,3 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 4,4,4 255,255,255 13,13,13 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 255,255,255 254,254,254 246,246,246 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 4,4,4 0,0,0 3,3,3 0,0,0 13,13,13 255,255,255 253,253,253 253,253,253 248,248,248 235,235,235 255,255,255 255,255,255 9,9,9 7,7,7 0,0,0 0,0,0 3,3,3 2,2,2 0,0,0 0,0,0 0,0,0 1,1,1 5,5,5 0,0,0 0,0,0 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 253,253,253 242,242,242 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 243,243,243 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 255,255,255 253,253,253 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 237,237,237 250,250,250 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 13,13,13 0,0,0 250,250,250 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 240,240,240 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 0,0,0 0,0,0 20,20,20 0,0,0 8,8,8 0,0,0 255,255,255 237,237,237 255,255,255 248,248,248 255,255,255 242,242,242 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 250,250,250 255,255,255 243,243,243 255,255,255 0,0,0 4,4,4 16,16,16 0,0,0 12,12,12 5,5,5 2,2,2 0,0,0 4,4,4 6,6,6 10,10,10 239,239,239 0,0,0 1,1,1 13,13,13 0,0,0 4,4,4 2,2,2 5,5,5 11,11,11 251,251,251 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 15,15,15 0,0,0 248,248,248 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 243,243,243 255,255,255 245,245,245 5,5,5 5,5,5 1,1,1 0,0,0 0,0,0 0,0,0 2,2,2 3,3,3 0,0,0 3,3,3 6,6,6 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 247,247,247 255,255,255 255,255,255 255,255,255 249,249,249 251,251,251 0,0,0 0,0,0 8,8,8 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 1,1,1 3,3,3 255,255,255 247,247,247 255,255,255 243,243,243 254,254,254 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 251,251,251 239,239,239 255,255,255 0,0,0 3,3,3 10,10,10 2,2,2 5,5,5 0,0,0 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 245,245,245 255,255,255 231,231,231 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 246,246,246 255,255,255 254,254,254 255,255,255 250,250,250 255,255,255 9,9,9 0,0,0 0,0,0 10,10,10 0,0,0 1,1,1 248,248,248 255,255,255 249,249,249 252,252,252 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 250,250,250 255,255,255 254,254,254 0,0,0 0,0,0 6,6,6 1,1,1 0,0,0 0,0,0 6,6,6 12,12,12 4,4,4 0,0,0 255,255,255 1,1,1 0,0,0 0,0,0 0,0,0 18,18,18 2,2,2 0,0,0 0,0,0 255,255,255 251,251,251 255,255,255 239,239,239 255,255,255 235,235,235 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 0,0,0 4,4,4 255,255,255 240,240,240 255,255,255 254,254,254 249,249,249 255,255,255 232,232,232 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 5,5,5 6,6,6 0,0,0 7,7,7 0,0,0 11,11,11 0,0,0 241,241,241 247,247,247 255,255,255 248,248,248 255,255,255 244,244,244 245,245,245 255,255,255 253,253,253 255,255,255 255,255,255 17,17,17 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 252,252,252 255,255,255 248,248,248 241,241,241 255,255,255 250,250,250 255,255,255 255,255,255 254,254,254 251,251,251 248,248,248 255,255,255 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 244,244,244 239,239,239 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 247,247,247 255,255,255 253,253,253 255,255,255 255,255,255 239,239,239 8,8,8 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 11,11,11 8,8,8 0,0,0 243,243,243 252,252,252 251,251,251 254,254,254 252,252,252 255,255,255 249,249,249 0,0,0 0,0,0 6,6,6 0,0,0 3,3,3 0,0,0 255,255,255 253,253,253 255,255,255 254,254,254 248,248,248 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 243,243,243 255,255,255 255,255,255 247,247,247 31,31,31 0,0,0 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 14,14,14 2,2,2 0,0,0 25,25,25 0,0,0 0,0,0 18,18,18 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 5,5,5 0,0,0 3,3,3 255,255,255 247,247,247 255,255,255 241,241,241 253,253,253 254,254,254 255,255,255 243,243,243 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 8,8,8 1,1,1 3,3,3 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 237,237,237 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 254,254,254 244,244,244 255,255,255 253,253,253 251,251,251 0,0,0 0,0,0 1,1,1 12,12,12 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 250,250,250 255,255,255 254,254,254 250,250,250 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 249,249,249 255,255,255 251,251,251 255,255,255 0,0,0 11,11,11 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 249,249,249 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 0,0,0 6,6,6 6,6,6 0,0,0 0,0,0 0,0,0 2,2,2 5,5,5 0,0,0 0,0,0 4,4,4 0,0,0 3,3,3 7,7,7 0,0,0 0,0,0 11,11,11 245,245,245 250,250,250 255,255,255 242,242,242 255,255,255 252,252,252 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 249,249,249 255,255,255 239,239,239 255,255,255 255,255,255 243,243,243 255,255,255 253,253,253 251,251,251 255,255,255 247,247,247 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 16,16,16 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 255,255,255 252,252,252 248,248,248 255,255,255 237,237,237 255,255,255 255,255,255 251,251,251 255,255,255 252,252,252 254,254,254 4,4,4 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 238,238,238 254,254,254 255,255,255 247,247,247 255,255,255 255,255,255 244,244,244 255,255,255 252,252,252 3,3,3 1,1,1 6,6,6 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 238,238,238 255,255,255 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 4,4,4 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 4,4,4 0,0,0 10,10,10 0,0,0 0,0,0 1,1,1 249,249,249 255,255,255 255,255,255 245,245,245 253,253,253 255,255,255 0,0,0 1,1,1 1,1,1 2,2,2 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 244,244,244 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 0,0,0 6,6,6 4,4,4 0,0,0 8,8,8 4,4,4 0,0,0 12,12,12 4,4,4 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 0,0,0 4,4,4 11,11,11 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 3,3,3 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 9,9,9 0,0,0 8,8,8 2,2,2 0,0,0 10,10,10 1,1,1 0,0,0 10,10,10 0,0,0 3,3,3 254,254,254 246,246,246 255,255,255 255,255,255 249,249,249 247,247,247 255,255,255 243,243,243 8,8,8 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 1,1,1 255,255,255 253,253,253 255,255,255 249,249,249 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 3,3,3 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 0,0,0 27,27,27 0,0,0 2,2,2 1,1,1 240,240,240 253,253,253 255,255,255 252,252,252 0,0,0 13,13,13 0,0,0 7,7,7 0,0,0 3,3,3 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 243,243,243 255,255,255 255,255,255 14,14,14 10,10,10 0,0,0 0,0,0 0,0,0 7,7,7 6,6,6 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 26,26,26 0,0,0 0,0,0 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 14,14,14 0,0,0 0,0,0 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 8,8,8 0,0,0 12,12,12 255,255,255 243,243,243 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 3,3,3 4,4,4 0,0,0 27,27,27 0,0,0 2,2,2 8,8,8 5,5,5 0,0,0 0,0,0 32,32,32 242,242,242 255,255,255 245,245,245 255,255,255 255,255,255 221,221,221 20,20,20 6,6,6 0,0,0 0,0,0 0,0,0 17,17,17 10,10,10 0,0,0 248,248,248 255,255,255 248,248,248 255,255,255 250,250,250 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 3,3,3 22,22,22 0,0,0 5,5,5 0,0,0 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 16,16,16 243,243,243 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 252,252,252 255,255,255 253,253,253 255,255,255 255,255,255 218,218,218 0,0,0 0,0,0 4,4,4 12,12,12 6,6,6 0,0,0 0,0,0 1,1,1 6,6,6 0,0,0 13,13,13 5,5,5 0,0,0 0,0,0 10,10,10 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 5,5,5 7,7,7 2,2,2 13,13,13 0,0,0 6,6,6 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 9,9,9 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 22,22,22 4,4,4 0,0,0 12,12,12 255,255,255 254,254,254 251,251,251 255,255,255 255,255,255 0,0,0 0,0,0 1,1,1 18,18,18 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 235,235,235 247,247,247 237,237,237 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 12,12,12 0,0,0 1,1,1 1,1,1 15,15,15 0,0,0 5,5,5 5,5,5 0,0,0 3,3,3 244,244,244 255,255,255 255,255,255 0,0,0 6,6,6 2,2,2 2,2,2 0,0,0 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 252,252,252 248,248,248 255,255,255 255,255,255 251,251,251 10,10,10 6,6,6 4,4,4 0,0,0 2,2,2 5,5,5 12,12,12 0,0,0 11,11,11 0,0,0 4,4,4 15,15,15 11,11,11 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 241,241,241 0,0,0 8,8,8 0,0,0 1,1,1 3,3,3 11,11,11 0,0,0 0,0,0 9,9,9 6,6,6 0,0,0 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 13,13,13 5,5,5 6,6,6 0,0,0 1,1,1 11,11,11 0,0,0 255,255,255 255,255,255 255,255,255 243,243,243 11,11,11 0,0,0 10,10,10 0,0,0 7,7,7 0,0,0 4,4,4 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 0,0,0 0,0,0 17,17,17 8,8,8 0,0,0 0,0,0 4,4,4 1,1,1 2,2,2 6,6,6 14,14,14 255,255,255 253,253,253 0,0,0 8,8,8 6,6,6 11,11,11 0,0,0 5,5,5 252,252,252 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 250,250,250 253,253,253 255,255,255 251,251,251 249,249,249 245,245,245 4,4,4 0,0,0 0,0,0 7,7,7 3,3,3 0,0,0 4,4,4 0,0,0 4,4,4 0,0,0 0,0,0 7,7,7 0,0,0 245,245,245 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 235,235,235 255,255,255 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 19,19,19 0,0,0 0,0,0 18,18,18 9,9,9 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 0,0,0 16,16,16 4,4,4 0,0,0 2,2,2 0,0,0 9,9,9 6,6,6 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 253,253,253 249,249,249 3,3,3 2,2,2 3,3,3 6,6,6 3,3,3 7,7,7 5,5,5 244,244,244 255,255,255 249,249,249 248,248,248 255,255,255 242,242,242 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 250,250,250 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 2,2,2 252,252,252 3,3,3 2,2,2 0,0,0 3,3,3 17,17,17 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 254,254,254 255,255,255 255,255,255 249,249,249 243,243,243 251,251,251 255,255,255 255,255,255 37,37,37 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 8,8,8 0,0,0 5,5,5 0,0,0 0,0,0 7,7,7 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 251,251,251 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 7,7,7 4,4,4 1,1,1 0,0,0 0,0,0 9,9,9 0,0,0 4,4,4 21,21,21 0,0,0 13,13,13 252,252,252 5,5,5 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 251,251,251 246,246,246 250,250,250 250,250,250 255,255,255 247,247,247 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 2,2,2 0,0,0 9,9,9 5,5,5 0,0,0 6,6,6 0,0,0 14,14,14 0,0,0 3,3,3 20,20,20 0,0,0 14,14,14 253,253,253 10,10,10 0,0,0 14,14,14 0,0,0 5,5,5 0,0,0 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 255,255,255 245,245,245 241,241,241 0,0,0 0,0,0 12,12,12 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 20,20,20 249,249,249 250,250,250 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 255,255,255 0,0,0 7,7,7 1,1,1 0,0,0 5,5,5 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 4,4,4 2,2,2 0,0,0 11,11,11 3,3,3 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 10,10,10 0,0,0 19,19,19 247,247,247 255,255,255 235,235,235 255,255,255 255,255,255 245,245,245 253,253,253 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 250,250,250 9,9,9 0,0,0 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 6,6,6 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 255,255,255 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 11,11,11 5,5,5 0,0,0 2,2,2 4,4,4 6,6,6 245,245,245 255,255,255 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 254,254,254 255,255,255 1,1,1 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 17,17,17 0,0,0 7,7,7 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 254,254,254 252,252,252 3,3,3 0,0,0 11,11,11 0,0,0 1,1,1 0,0,0 5,5,5 1,1,1 2,2,2 15,15,15 0,0,0 8,8,8 3,3,3 0,0,0 4,4,4 3,3,3 0,0,0 0,0,0 249,249,249 255,255,255 244,244,244 255,255,255 254,254,254 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 7,7,7 1,1,1 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 245,245,245 255,255,255 0,0,0 3,3,3 12,12,12 0,0,0 0,0,0 1,1,1 7,7,7 5,5,5 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 253,253,253 255,255,255 5,5,5 0,0,0 1,1,1 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 245,245,245 255,255,255 0,0,0 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 0,0,0 11,11,11 248,248,248 246,246,246 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 19,19,19 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 18,18,18 246,246,246 255,255,255 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 0,0,0 13,13,13 252,252,252 240,240,240 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 250,250,250 230,230,230 249,249,249 255,255,255 0,0,0 5,5,5 17,17,17 0,0,0 3,3,3 0,0,0 0,0,0 0,0,0 3,3,3 0,0,0 1,1,1 6,6,6 0,0,0 0,0,0 0,0,0 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 251,251,251 6,6,6 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 3,3,3 1,1,1 0,0,0 255,255,255 241,241,241 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 255,255,255 234,234,234 0,0,0 9,9,9 0,0,0 18,18,18 0,0,0 0,0,0 17,17,17 1,1,1 236,236,236 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 13,13,13 5,5,5 1,1,1 255,255,255 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 13,13,13 0,0,0 0,0,0 4,4,4 17,17,17 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 2,2,2 0,0,0 5,5,5 2,2,2 255,255,255 239,239,239 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 253,253,253 255,255,255 250,250,250 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 16,16,16 0,0,0 247,247,247 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 239,239,239 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 0,0,0 8,8,8 255,255,255 255,255,255 255,255,255 244,244,244 242,242,242 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 2,2,2 0,0,0 249,249,249 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 252,252,252 246,246,246 255,255,255 0,0,0 12,12,12 15,15,15 0,0,0 0,0,0 0,0,0 6,6,6 11,11,11 0,0,0 0,0,0 11,11,11 0,0,0 14,14,14 243,243,243 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 250,250,250 255,255,255 255,255,255 3,3,3 0,0,0 23,23,23 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 244,244,244 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 255,255,255 3,3,3 0,0,0 5,5,5 6,6,6 17,17,17 0,0,0 5,5,5 1,1,1 249,249,249 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 18,18,18 0,0,0 5,5,5 255,255,255 255,255,255 250,250,250 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 250,250,250 0,0,0 3,3,3 2,2,2 0,0,0 3,3,3 0,0,0 0,0,0 1,1,1 7,7,7 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 232,232,232 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 255,255,255 229,229,229 255,255,255 251,251,251 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 255,255,255 238,238,238 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 9,9,9 0,0,0 1,1,1 0,0,0 3,3,3 0,0,0 6,6,6 0,0,0 0,0,0 255,255,255 251,251,251 251,251,251 255,255,255 254,254,254 255,255,255 234,234,234 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 6,6,6 0,0,0 5,5,5 0,0,0 6,6,6 238,238,238 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 24,24,24 0,0,0 9,9,9 0,0,0 8,8,8 0,0,0 0,0,0 5,5,5 9,9,9 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 2,2,2 14,14,14 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 7,7,7 248,248,248 255,255,255 243,243,243 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 0,0,0 11,11,11 0,0,0 11,11,11 0,0,0 2,2,2 0,0,0 0,0,0 252,252,252 254,254,254 253,253,253 251,251,251 255,255,255 248,248,248 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 2,2,2 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 246,246,246 234,234,234 22,22,22 0,0,0 0,0,0 6,6,6 7,7,7 15,15,15 0,0,0 0,0,0 13,13,13 0,0,0 12,12,12 0,0,0 7,7,7 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 250,250,250 254,254,254 245,245,245 255,255,255 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 246,246,246 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 2,2,2 0,0,0 0,0,0 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 253,253,253 255,255,255 252,252,252 252,252,252 249,249,249 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 2,2,2 12,12,12 0,0,0 5,5,5 0,0,0 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 2,2,2 0,0,0 3,3,3 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 249,249,249 255,255,255 236,236,236 255,255,255 255,255,255 255,255,255 0,0,0 4,4,4 10,10,10 0,0,0 0,0,0 14,14,14 0,0,0 12,12,12 0,0,0 8,8,8 0,0,0 4,4,4 0,0,0 12,12,12 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 240,240,240 255,255,255 250,250,250 255,255,255 241,241,241 13,13,13 8,8,8 0,0,0 0,0,0 0,0,0 2,2,2 1,1,1 11,11,11 0,0,0 12,12,12 0,0,0 255,255,255 254,254,254 248,248,248 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 254,254,254 237,237,237 255,255,255 0,0,0 0,0,0 0,0,0 5,5,5 0,0,0 4,4,4 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 1,1,1 3,3,3 8,8,8 0,0,0 4,4,4 0,0,0 0,0,0 255,255,255 255,255,255 247,247,247 255,255,255 251,251,251 253,253,253 255,255,255 243,243,243 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 17,17,17 0,0,0 0,0,0 6,6,6 7,7,7 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 14,14,14 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 251,251,251 252,252,252 238,238,238 255,255,255 255,255,255 245,245,245 253,253,253 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 244,244,244 255,255,255 249,249,249 255,255,255 255,255,255 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 251,251,251 255,255,255 241,241,241 0,0,0 9,9,9 1,1,1 2,2,2 6,6,6 0,0,0 0,0,0 9,9,9 0,0,0 20,20,20 230,230,230 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 249,249,249 243,243,243 255,255,255 255,255,255 0,0,0 15,15,15 19,19,19 0,0,0 2,2,2 0,0,0 2,2,2 0,0,0 1,1,1 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 1,1,1 15,15,15 0,0,0 255,255,255 255,255,255 255,255,255 231,231,231 255,255,255 243,243,243 255,255,255 254,254,254 253,253,253 246,246,246 255,255,255 252,252,252 20,20,20 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 7,7,7 4,4,4 11,11,11 6,6,6 0,0,0 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 233,233,233 255,255,255 15,15,15 0,0,0 12,12,12 1,1,1 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 17,17,17 225,225,225 255,255,255 251,251,251 229,229,229 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 11,11,11 14,14,14 0,0,0 3,3,3 255,255,255 255,255,255 252,252,252 247,247,247 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 252,252,252 255,255,255 0,0,0 7,7,7 0,0,0 0,0,0 13,13,13 5,5,5 0,0,0 6,6,6 0,0,0 6,6,6 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 3,3,3 11,11,11 11,11,11 0,0,0 6,6,6 2,2,2 0,0,0 0,0,0 0,0,0 255,255,255 254,254,254 255,255,255 255,255,255 232,232,232 255,255,255 249,249,249 255,255,255 253,253,253 255,255,255 9,9,9 0,0,0 0,0,0 0,0,0 2,2,2 6,6,6 5,5,5 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 241,241,241 242,242,242 255,255,255 255,255,255 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 255,255,255 248,248,248 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 235,235,235 251,251,251 255,255,255 245,245,245 249,249,249 13,13,13 0,0,0 0,0,0 5,5,5 2,2,2 0,0,0 0,0,0 17,17,17 8,8,8 227,227,227 249,249,249 255,255,255 248,248,248 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 248,248,248 254,254,254 1,1,1 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 7,7,7 2,2,2 11,11,11 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 1,1,1 2,2,2 0,0,0 248,248,248 0,0,0 19,19,19 0,0,0 5,5,5 245,245,245 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 255,255,255 241,241,241 253,253,253 15,15,15 0,0,0 0,0,0 12,12,12 2,2,2 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 1,1,1 8,8,8 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 255,255,255 255,255,255 254,254,254 242,242,242 9,9,9 0,0,0 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 24,24,24 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 19,19,19 0,0,0 255,255,255 248,248,248 253,253,253 250,250,250 235,235,235 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 255,255,255 253,253,253 251,251,251 255,255,255 255,255,255 239,239,239 4,4,4 0,0,0 14,14,14 2,2,2 0,0,0 15,15,15 0,0,0 0,0,0 255,255,255 250,250,250 244,244,244 255,255,255 248,248,248 255,255,255 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 236,236,236 255,255,255 250,250,250 8,8,8 6,6,6 4,4,4 2,2,2 0,0,0 0,0,0 9,9,9 4,4,4 0,0,0 0,0,0 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 13,13,13 0,0,0 16,16,16 255,255,255 15,15,15 0,0,0 0,0,0 0,0,0 7,7,7 9,9,9 255,255,255 255,255,255 235,235,235 248,248,248 253,253,253 255,255,255 255,255,255 0,0,0 12,12,12 1,1,1 7,7,7 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 0,0,0 17,17,17 0,0,0 252,252,252 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 252,252,252 255,255,255 5,5,5 0,0,0 10,10,10 0,0,0 10,10,10 6,6,6 0,0,0 8,8,8 10,10,10 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 1,1,1 0,0,0 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 255,255,255 242,242,242 255,255,255 240,240,240 253,253,253 15,15,15 2,2,2 0,0,0 7,7,7 0,0,0 4,4,4 13,13,13 255,255,255 249,249,249 253,253,253 255,255,255 255,255,255 255,255,255 242,242,242 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 255,255,255 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 21,21,21 0,0,0 6,6,6 16,16,16 250,250,250 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 8,8,8 0,0,0 0,0,0 19,19,19 238,238,238 236,236,236 7,7,7 7,7,7 0,0,0 14,14,14 0,0,0 0,0,0 0,0,0 255,255,255 2,2,2 255,255,255 0,0,0 0,0,0 10,10,10 0,0,0 3,3,3 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 11,11,11 12,12,12 0,0,0 2,2,2 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 246,246,246 249,249,249 253,253,253 255,255,255 250,250,250 0,0,0 6,6,6 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 12,12,12 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 9,9,9 5,5,5 5,5,5 4,4,4 248,248,248 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 250,250,250 255,255,255 255,255,255 253,253,253 255,255,255 0,0,0 14,14,14 0,0,0 0,0,0 1,1,1 0,0,0 4,4,4 244,244,244 255,255,255 249,249,249 249,249,249 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 250,250,250 255,255,255 0,0,0 0,0,0 8,8,8 2,2,2 0,0,0 0,0,0 1,1,1 1,1,1 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 21,21,21 1,1,1 2,2,2 248,248,248 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 23,23,23 7,7,7 0,0,0 0,0,0 4,4,4 16,16,16 0,0,0 13,13,13 0,0,0 0,0,0 16,16,16 0,0,0 0,0,0 20,20,20 0,0,0 0,0,0 26,26,26 0,0,0 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 255,255,255 0,0,0 0,0,0 7,7,7 2,2,2 0,0,0 15,15,15 6,6,6 3,3,3 5,5,5 253,253,253 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 8,8,8 0,0,0 0,0,0 0,0,0 5,5,5 247,247,247 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 0,0,0 4,4,4 1,1,1 0,0,0 0,0,0 23,23,23 246,246,246 255,255,255 248,248,248 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 4,4,4 0,0,0 4,4,4 0,0,0 12,12,12 0,0,0 0,0,0 0,0,0 10,10,10 0,0,0 255,255,255 249,249,249 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 3,3,3 255,255,255 255,255,255 252,252,252 255,255,255 5,5,5 3,3,3 3,3,3 5,5,5 0,0,0 0,0,0 10,10,10 1,1,1 0,0,0 6,6,6 0,0,0 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 3,3,3 0,0,0 8,8,8 12,12,12 0,0,0 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 243,243,243 255,255,255 6,6,6 8,8,8 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 255,255,255 248,248,248 255,255,255 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 10,10,10 2,2,2 0,0,0 10,10,10 253,253,253 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 253,253,253 249,249,249 255,255,255 252,252,252 2,2,2 3,3,3 0,0,0 1,1,1 0,0,0 1,1,1 8,8,8 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 0,0,0 2,2,2 0,0,0 4,4,4 1,1,1 3,3,3 0,0,0 1,1,1 0,0,0 0,0,0 18,18,18 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 1,1,1 5,5,5 0,0,0 255,255,255 255,255,255 254,254,254 248,248,248 250,250,250 254,254,254 248,248,248 255,255,255 251,251,251 255,255,255 252,252,252 255,255,255 255,255,255 244,244,244 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 4,4,4 0,0,0 255,255,255 255,255,255 254,254,254 252,252,252 255,255,255 10,10,10 0,0,0 13,13,13 2,2,2 0,0,0 0,0,0 7,7,7 0,0,0 0,0,0 11,11,11 0,0,0 0,0,0 3,3,3 4,4,4 0,0,0 255,255,255 250,250,250 255,255,255 254,254,254 244,244,244 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 241,241,241 248,248,248 247,247,247 255,255,255 255,255,255 4,4,4 0,0,0 1,1,1 0,0,0 3,3,3 6,6,6 4,4,4 0,0,0 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 248,248,248 255,255,255 11,11,11 5,5,5 3,3,3 0,0,0 0,0,0 0,0,0 11,11,11 19,19,19 0,0,0 1,1,1 18,18,18 0,0,0 7,7,7 0,0,0 0,0,0 1,1,1 1,1,1 254,254,254 247,247,247 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 245,245,245 255,255,255 255,255,255 232,232,232 255,255,255 255,255,255 249,249,249 0,0,0 9,9,9 0,0,0 16,16,16 4,4,4 4,4,4 3,3,3 8,8,8 1,1,1 246,246,246 251,251,251 255,255,255 255,255,255 241,241,241 254,254,254 14,14,14 0,0,0 2,2,2 2,2,2 3,3,3 8,8,8 0,0,0 17,17,17 4,4,4 0,0,0 0,0,0 14,14,14 0,0,0 4,4,4 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 235,235,235 2,2,2 5,5,5 0,0,0 7,7,7 24,24,24 0,0,0 6,6,6 5,5,5 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 250,250,250 255,255,255 246,246,246 0,0,0 0,0,0 3,3,3 26,26,26 0,0,0 15,15,15 0,0,0 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 14,14,14 19,19,19 0,0,0 4,4,4 255,255,255 255,255,255 255,255,255 246,246,246 242,242,242 255,255,255 255,255,255 251,251,251 255,255,255 253,253,253 255,255,255 255,255,255 251,251,251 244,244,244 12,12,12 0,0,0 7,7,7 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 243,243,243 254,254,254 255,255,255 250,250,250 6,6,6 6,6,6 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 17,17,17 0,0,0 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 253,253,253 255,255,255 218,218,218 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 250,250,250 255,255,255 249,249,249 248,248,248 255,255,255 255,255,255 0,0,0 0,0,0 15,15,15 0,0,0 0,0,0 14,14,14 8,8,8 255,255,255 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 242,242,242 255,255,255 255,255,255 254,254,254 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 15,15,15 6,6,6 8,8,8 21,21,21 0,0,0 1,1,1 0,0,0 251,251,251 255,255,255 230,230,230 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 248,248,248 255,255,255 248,248,248 246,246,246 255,255,255 248,248,248 255,255,255 2,2,2 0,0,0 0,0,0 11,11,11 0,0,0 8,8,8 12,12,12 3,3,3 255,255,255 244,244,244 245,245,245 239,239,239 255,255,255 242,242,242 255,255,255 255,255,255 250,250,250 255,255,255 4,4,4 0,0,0 12,12,12 1,1,1 0,0,0 0,0,0 3,3,3 0,0,0 0,0,0 9,9,9 0,0,0 18,18,18 1,1,1 255,255,255 254,254,254 243,243,243 255,255,255 255,255,255 243,243,243 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 255,255,255 255,255,255 255,255,255 248,248,248 0,0,0 0,0,0 6,6,6 0,0,0 0,0,0 9,9,9 8,8,8 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 247,247,247 255,255,255 254,254,254 255,255,255 251,251,251 255,255,255 0,0,0 6,6,6 5,5,5 2,2,2 3,3,3 0,0,0 3,3,3 0,0,0 5,5,5 0,0,0 255,255,255 250,250,250 255,255,255 255,255,255 237,237,237 255,255,255 241,241,241 255,255,255 247,247,247 255,255,255 243,243,243 253,253,253 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 9,9,9 5,5,5 0,0,0 15,15,15 1,1,1 0,0,0 255,255,255 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 244,244,244 0,0,0 0,0,0 0,0,0 8,8,8 7,7,7 2,2,2 0,0,0 12,12,12 13,13,13 0,0,0 0,0,0 238,238,238 253,253,253 246,246,246 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 250,250,250 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 235,235,235 255,255,255 255,255,255 242,242,242 255,255,255 0,0,0 8,8,8 0,0,0 0,0,0 2,2,2 0,0,0 0,0,0 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 255,255,255 255,255,255 254,254,254 241,241,241 255,255,255 255,255,255 255,255,255 0,0,0 1,1,1 254,254,254 20,20,20 0,0,0 255,255,255 242,242,242 255,255,255 239,239,239 255,255,255 253,253,253 228,228,228 255,255,255 243,243,243 255,255,255 248,248,248 249,249,249 255,255,255 254,254,254 255,255,255 250,250,250 248,248,248 11,11,11 0,0,0 16,16,16 3,3,3 0,0,0 0,0,0 0,0,0 0,0,0 14,14,14 255,255,255 238,238,238 255,255,255 254,254,254 241,241,241 249,249,249 255,255,255 235,235,235 239,239,239 255,255,255 252,252,252 255,255,255 0,0,0 7,7,7 4,4,4 0,0,0 0,0,0 15,15,15 0,0,0 255,255,255 252,252,252 255,255,255 247,247,247 255,255,255 255,255,255 239,239,239 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 237,237,237 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 8,8,8 0,0,0 6,6,6 1,1,1 0,0,0 16,16,16 255,255,255 252,252,252 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 244,244,244 255,255,255 244,244,244 248,248,248 255,255,255 255,255,255 251,251,251 241,241,241 255,255,255 255,255,255 255,255,255 238,238,238 255,255,255 233,233,233 255,255,255 245,245,245 255,255,255 251,251,251 248,248,248 255,255,255 255,255,255 240,240,240 255,255,255 255,255,255 255,255,255 241,241,241 245,245,245 245,245,245 255,255,255 253,253,253 0,0,0 12,12,12 0,0,0 8,8,8 3,3,3 9,9,9 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 248,248,248 244,244,244 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 251,251,251 0,0,0 0,0,0 16,16,16 255,255,255 244,244,244 243,243,243 255,255,255 255,255,255 251,251,251 255,255,255 235,235,235 255,255,255 246,246,246 252,252,252 255,255,255 248,248,248 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 250,250,250 255,255,255 254,254,254 4,4,4 2,2,2 0,0,0 5,5,5 0,0,0 0,0,0 9,9,9 0,0,0 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 0,0,0 0,0,0 4,4,4 0,0,0 2,2,2 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 254,254,254 254,254,254 241,241,241 255,255,255 255,255,255 251,251,251 255,255,255 250,250,250 250,250,250 254,254,254 255,255,255 255,255,255 231,231,231 254,254,254 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 245,245,245 255,255,255 255,255,255 245,245,245 247,247,247 255,255,255 248,248,248 253,253,253 245,245,245 255,255,255 255,255,255 252,252,252 244,244,244 9,9,9 2,2,2 0,0,0 9,9,9 0,0,0 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 247,247,247 249,249,249 247,247,247 255,255,255 248,248,248 254,254,254 17,17,17 255,255,255 242,242,242 252,252,252 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 238,238,238 255,255,255 243,243,243 255,255,255 243,243,243 250,250,250 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 250,250,250 250,250,250 11,11,11 0,0,0 2,2,2 0,0,0 1,1,1 0,0,0 1,1,1 0,0,0 246,246,246 255,255,255 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 242,242,242 253,253,253 0,0,0 0,0,0 1,1,1 4,4,4 1,1,1 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 249,249,249 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 252,252,252 0,0,0 10,10,10 0,0,0 0,0,0 5,5,5 0,0,0 2,2,2 0,0,0 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 242,242,242 255,255,255 1,1,1 0,0,0 0,0,0 1,1,1 2,2,2 5,5,5 0,0,0 13,13,13 255,255,255 231,231,231 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 255,255,255 255,255,255 3,3,3 0,0,0 0,0,0 13,13,13 4,4,4 3,3,3 2,2,2 250,250,250 255,255,255 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 253,253,253 246,246,246 255,255,255 0,0,0 0,0,0 21,21,21 0,0,0 0,0,0 0,0,0 0,0,0 3,3,3 25,25,25 223,223,223 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 0,0,0 0,0,0 2,2,2 7,7,7 0,0,0 0,0,0 8,8,8 0,0,0 242,242,242 255,255,255 255,255,255 240,240,240 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 253,253,253 246,246,246 255,255,255 12,12,12 2,2,2 0,0,0 0,0,0 10,10,10 234,234,234 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 255,255,255 249,249,249 249,249,249 255,255,255 255,255,255 255,255,255 247,247,247 238,238,238 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 254,254,254 255,255,255 0,0,0 7,7,7 0,0,0 3,3,3 0,0,0 1,1,1 0,0,0 10,10,10 255,255,255 243,243,243 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 233,233,233 255,255,255 255,255,255 255,255,255 247,247,247 252,252,252 23,23,23 0,0,0 3,3,3 255,255,255 239,239,239 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,251,251 249,249,249 255,255,255 253,253,253 255,255,255 250,250,250 233,233,233 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 252,252,252 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 245,245,245 17,17,17 3,3,3 0,0,0 4,4,4 250,250,250 250,250,250 255,255,255 245,245,245 250,250,250 255,255,255 246,246,246 244,244,244 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 242,242,242 255,255,255 246,246,246 245,245,245 255,255,255 255,255,255 255,255,255 232,232,232 255,255,255 239,239,239 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 237,237,237 255,255,255 255,255,255 244,244,244 250,250,250 255,255,255 238,238,238 247,247,247 255,255,255 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 228,228,228 255,255,255 0,0,0 0,0,0 4,4,4 255,255,255 251,251,251 255,255,255 239,239,239 255,255,255 255,255,255 248,248,248 247,247,247 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 255,255,255 251,251,251 251,251,251 255,255,255 246,246,246 255,255,255 255,255,255 255,255,255 237,237,237 255,255,255 251,251,251 255,255,255 255,255,255 246,246,246 244,244,244 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 255,255,255 252,252,252 255,255,255 250,250,250 255,255,255 252,252,252 251,251,251 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 249,249,249 246,246,246 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 5,5,5 3,3,3 252,252,252 255,255,255 246,246,246 254,254,254 255,255,255 255,255,255 234,234,234 255,255,255 255,255,255 249,249,249 249,249,249 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 237,237,237 255,255,255 248,248,248 255,255,255 255,255,255 248,248,248 241,241,241 248,248,248 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 249,249,249 242,242,242 255,255,255 241,241,241 239,239,239 255,255,255 252,252,252 255,255,255 251,251,251 254,254,254 245,245,245 250,250,250 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 255,255,255 254,254,254 252,252,252 255,255,255 255,255,255 249,249,249 254,254,254 255,255,255 255,255,255 248,248,248 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 255,255,255 251,251,251 245,245,245 255,255,255 251,251,251 255,255,255 255,255,255 251,251,251 255,255,255 255,255,255 253,253,253 253,253,253 247,247,247 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 247,247,247 255,255,255 255,255,255 245,245,245 255,255,255 255,255,255 243,243,243 255,255,255 255,255,255 245,245,245 255,255,255 249,249,249 255,255,255 250,250,250 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/9_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/9_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/9_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/9_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/9_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/9_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/9_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/9_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/9_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/9_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/9_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_binaried.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_greied.txt new file mode 100644 index 0000000..2272203 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_greied.txt @@ -0,0 +1,60 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 192,192,192 123,123,123 125,125,125 122,122,122 125,125,125 171,171,171 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 251,251,251 254,254,254 253,253,253 255,255,255 227,227,227 131,131,131 124,124,124 124,124,124 124,124,124 131,131,131 226,226,226 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 254,254,254 170,170,170 124,124,124 124,124,124 124,124,124 155,155,155 247,247,247 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 248,248,248 153,153,153 124,124,124 128,128,128 127,127,127 170,170,170 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 192,192,192 124,124,124 125,125,125 124,124,124 124,124,124 170,170,170 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 125,125,125 126,126,126 132,132,132 227,227,227 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 252,252,252 255,255,255 169,169,169 123,123,123 125,125,125 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 122,122,122 124,124,124 122,122,122 123,123,123 123,123,123 123,123,123 123,123,123 124,124,124 121,121,121 124,124,124 121,121,121 123,123,123 123,123,123 123,123,123 123,123,123 122,122,122 123,123,123 122,122,122 124,124,124 124,124,124 123,123,123 124,124,124 166,166,166 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 169,169,169 124,124,124 126,126,126 126,126,126 152,152,152 248,248,248 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 211,211,211 126,126,126 122,122,122 126,126,126 123,123,123 126,126,126 194,194,194 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 194,194,194 124,124,124 127,127,127 125,125,125 129,129,129 172,172,172 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 227,227,227 135,135,135 126,126,126 126,126,126 126,126,126 133,133,133 228,228,228 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 169,169,169 124,124,124 125,125,125 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 127,127,127 123,123,123 126,126,126 124,124,124 126,126,126 125,125,125 127,127,127 128,128,128 126,126,126 123,123,123 126,126,126 125,125,125 125,125,125 124,124,124 125,125,125 125,125,125 123,123,123 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 169,169,169 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 171,171,171 125,125,125 124,124,124 125,125,125 154,154,154 246,246,246 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 248,248,248 155,155,155 126,126,126 128,128,128 128,128,128 128,128,128 192,192,192 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 193,193,193 123,123,123 127,127,127 122,122,122 127,127,127 124,124,124 126,126,126 126,126,126 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 125,125,125 125,125,125 125,125,125 122,122,122 169,169,169 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 228,228,228 132,132,132 124,124,124 125,125,125 126,126,126 132,132,132 228,228,228 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 171,171,171 124,124,124 126,126,126 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 126,126,126 125,125,125 125,125,125 125,125,125 126,126,126 124,124,124 125,125,125 124,124,124 125,125,125 125,125,125 170,170,170 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 170,170,170 125,125,125 126,126,126 126,126,126 154,154,154 248,248,248 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 213,213,213 124,124,124 128,128,128 125,125,125 126,126,126 124,124,124 126,126,126 126,126,126 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 192,192,192 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 196,196,196 127,127,127 128,128,128 125,125,125 128,128,128 127,127,127 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 126,126,126 125,125,125 125,125,125 171,171,171 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 230,230,230 135,135,135 127,127,127 128,128,128 129,129,129 135,135,135 228,228,228 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 170,170,170 125,125,125 125,125,125 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 127,127,127 127,127,127 126,126,126 126,126,126 127,127,127 125,125,125 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 126,126,126 125,125,125 124,124,124 124,124,124 124,124,124 168,168,168 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 172,172,172 127,127,127 126,126,126 126,126,126 154,154,154 247,247,247 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 239,239,239 143,143,143 127,127,127 126,126,126 124,124,124 128,128,128 127,127,127 129,129,129 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 192,192,192 253,253,253 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 196,196,196 126,126,126 128,128,128 123,123,123 126,126,126 124,124,124 127,127,127 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 124,124,124 125,125,125 123,123,123 170,170,170 255,255,255 255,255,255 255,255,255 226,226,226 129,129,129 123,123,123 122,122,122 124,124,124 124,124,124 124,124,124 124,124,124 123,123,123 124,124,124 125,125,125 125,125,125 126,126,126 127,127,127 123,123,123 124,124,124 124,124,124 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 123,123,123 123,123,123 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 213,213,213 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 249,249,249 158,158,158 129,129,129 130,130,130 129,129,129 136,136,136 230,230,230 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 171,171,171 126,126,126 126,126,126 126,126,126 153,153,153 247,247,247 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 168,168,168 128,128,128 127,127,127 127,127,127 124,124,124 125,125,125 127,127,127 127,127,127 128,128,128 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 191,191,191 253,253,253 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 195,195,195 127,127,127 127,127,127 123,123,123 127,127,127 124,124,124 126,126,126 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 125,125,125 125,125,125 124,124,124 170,170,170 255,255,255 255,255,255 255,255,255 229,229,229 134,134,134 127,127,127 125,125,125 127,127,127 128,128,128 128,128,128 128,128,128 126,126,126 126,126,126 127,127,127 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 128,128,128 128,128,128 127,127,127 127,127,127 128,128,128 126,126,126 126,126,126 125,125,125 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 212,212,212 253,253,253 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 249,249,249 158,158,158 128,128,128 130,130,130 128,128,128 136,136,136 230,230,230 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 171,171,171 127,127,127 129,129,129 129,129,129 155,155,155 249,249,249 254,254,254 254,254,254 254,254,254 254,254,254 215,215,215 128,128,128 122,122,122 123,123,123 124,124,124 125,125,125 125,125,125 125,125,125 123,123,123 123,123,123 128,128,128 126,126,126 126,126,126 124,124,124 122,122,122 125,125,125 125,125,125 126,126,126 192,192,192 253,253,253 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 192,192,192 125,125,125 126,126,126 124,124,124 127,127,127 126,126,126 126,126,126 128,128,128 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 126,126,126 124,124,124 169,169,169 254,254,254 253,253,253 253,253,253 227,227,227 132,132,132 125,125,125 123,123,123 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 126,126,126 125,125,125 127,127,127 126,126,126 127,127,127 124,124,124 126,126,126 126,126,126 128,128,128 124,124,124 127,127,127 125,125,125 127,127,127 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 212,212,212 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 241,241,241 138,138,138 125,125,125 124,124,124 123,123,123 123,123,123 126,126,126 125,125,125 125,125,125 125,125,125 127,127,127 127,127,127 126,126,126 125,125,125 126,126,126 124,124,124 125,125,125 125,125,125 125,125,125 124,124,124 124,124,124 125,125,125 124,124,124 124,124,124 125,125,125 124,124,124 126,126,126 127,127,127 125,125,125 130,130,130 227,227,227 254,254,254 253,253,253 254,254,254 228,228,228 133,133,133 126,126,126 125,125,125 125,125,125 128,128,128 127,127,127 126,126,126 125,125,125 126,126,126 127,127,127 192,192,192 255,255,255 229,229,229 132,132,132 125,125,125 126,126,126 128,128,128 128,128,128 194,194,194 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 193,193,193 125,125,125 125,125,125 128,128,128 128,128,128 135,135,135 227,227,227 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 196,196,196 127,127,127 128,128,128 125,125,125 128,128,128 173,173,173 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 228,228,228 132,132,132 125,125,125 124,124,124 125,125,125 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 125,125,125 125,125,125 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 213,213,213 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 241,241,241 138,138,138 127,127,127 126,126,126 126,126,126 125,125,125 127,127,127 126,126,126 127,127,127 125,125,125 125,125,125 125,125,125 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 127,127,127 125,125,125 123,123,123 124,124,124 125,125,125 126,126,126 124,124,124 126,126,126 124,124,124 128,128,128 126,126,126 126,126,126 131,131,131 229,229,229 255,255,255 255,255,255 255,255,255 228,228,228 132,132,132 126,126,126 124,124,124 128,128,128 128,128,128 129,129,129 126,126,126 124,124,124 126,126,126 124,124,124 194,194,194 246,246,246 157,157,157 126,126,126 124,124,124 127,127,127 126,126,126 140,140,140 241,241,241 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 229,229,229 133,133,133 124,124,124 128,128,128 126,126,126 126,126,126 195,195,195 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 194,194,194 128,128,128 128,128,128 127,127,127 128,128,128 174,174,174 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 226,226,226 131,131,131 125,125,125 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 127,127,127 123,123,123 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 124,124,124 126,126,126 124,124,124 126,126,126 124,124,124 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 212,212,212 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 240,240,240 138,138,138 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 124,124,124 125,125,125 126,126,126 125,125,125 127,127,127 126,126,126 126,126,126 127,127,127 128,128,128 128,128,128 124,124,124 127,127,127 125,125,125 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 122,122,122 125,125,125 123,123,123 131,131,131 227,227,227 255,255,255 254,254,254 255,255,255 223,223,223 131,131,131 124,124,124 127,127,127 124,124,124 125,125,125 127,127,127 126,126,126 121,121,121 124,124,124 124,124,124 193,193,193 174,174,174 122,122,122 124,124,124 126,126,126 124,124,124 126,126,126 214,214,214 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 248,248,248 153,153,153 128,128,128 126,126,126 128,128,128 127,127,127 156,156,156 249,249,249 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 253,253,253 254,254,254 227,227,227 133,133,133 126,126,126 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 127,127,127 124,124,124 127,127,127 124,124,124 127,127,127 127,127,127 128,128,128 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 128,128,128 153,153,153 248,248,248 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 230,230,230 139,139,139 130,130,130 130,130,130 128,128,128 137,137,137 229,229,229 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 241,241,241 138,138,138 125,125,125 125,125,125 126,126,126 125,125,125 126,126,126 126,126,126 126,126,126 125,125,125 128,128,128 127,127,127 126,126,126 126,126,126 126,126,126 125,125,125 126,126,126 126,126,126 126,126,126 123,123,123 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 127,127,127 125,125,125 126,126,126 130,130,130 229,229,229 255,255,255 254,254,254 254,254,254 228,228,228 131,131,131 124,124,124 125,125,125 127,127,127 128,128,128 128,128,128 125,125,125 125,125,125 123,123,123 126,126,126 127,127,127 125,125,125 128,128,128 123,123,123 122,122,122 131,131,131 172,172,172 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 193,193,193 126,126,126 128,128,128 128,128,128 128,128,128 143,143,143 241,241,241 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 124,124,124 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 153,153,153 249,249,249 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 228,228,228 133,133,133 125,125,125 126,126,126 126,126,126 133,133,133 228,228,228 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 241,241,241 139,139,139 128,128,128 127,127,127 128,128,128 155,155,155 249,249,249 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 249,249,249 156,156,156 127,127,127 129,129,129 128,128,128 136,136,136 230,230,230 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 171,171,171 127,127,127 125,125,125 126,126,126 131,131,131 229,229,229 255,255,255 254,254,254 254,254,254 227,227,227 130,130,130 126,126,126 125,125,125 125,125,125 125,125,125 126,126,126 126,126,126 125,125,125 124,124,124 126,126,126 191,191,191 217,217,217 122,122,122 126,126,126 124,124,124 124,124,124 126,126,126 123,123,123 126,126,126 124,124,124 126,126,126 124,124,124 125,125,125 127,127,127 126,126,126 125,125,125 126,126,126 124,124,124 127,127,127 125,125,125 126,126,126 124,124,124 122,122,122 212,212,212 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 227,227,227 133,133,133 125,125,125 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 129,129,129 127,127,127 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 125,125,125 154,154,154 248,248,248 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 229,229,229 135,135,135 127,127,127 127,127,127 128,128,128 134,134,134 229,229,229 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 241,241,241 140,140,140 129,129,129 128,128,128 128,128,128 156,156,156 249,249,249 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 249,249,249 156,156,156 126,126,126 128,128,128 127,127,127 136,136,136 228,228,228 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 171,171,171 127,127,127 126,126,126 127,127,127 132,132,132 230,230,230 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 172,172,172 128,128,128 130,130,130 128,128,128 154,154,154 248,248,248 254,254,254 253,253,253 249,249,249 161,161,161 128,128,128 125,125,125 128,128,128 126,126,126 128,128,128 125,125,125 128,128,128 127,127,127 127,127,127 126,126,126 127,127,127 127,127,127 128,128,128 125,125,125 127,127,127 126,126,126 127,127,127 127,127,127 124,124,124 126,126,126 214,214,214 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 126,126,126 127,127,127 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 124,124,124 153,153,153 248,248,248 254,254,254 254,254,254 254,254,254 227,227,227 130,130,130 124,124,124 122,122,122 123,123,123 124,124,124 123,123,123 124,124,124 124,124,124 123,123,123 123,123,123 124,124,124 124,124,124 126,126,126 124,124,124 125,125,125 124,124,124 123,123,123 124,124,124 125,125,125 125,125,125 125,125,125 124,124,124 126,126,126 124,124,124 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 131,131,131 226,226,226 254,254,254 254,254,254 254,254,254 240,240,240 139,139,139 125,125,125 124,124,124 126,126,126 126,126,126 126,126,126 126,126,126 127,127,127 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 126,126,126 124,124,124 126,126,126 124,124,124 124,124,124 125,125,125 126,126,126 126,126,126 126,126,126 132,132,132 228,228,228 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 170,170,170 127,127,127 126,126,126 127,127,127 157,157,157 248,248,248 255,255,255 254,254,254 249,249,249 156,156,156 127,127,127 126,126,126 126,126,126 125,125,125 127,127,127 127,127,127 127,127,127 124,124,124 123,123,123 123,123,123 127,127,127 128,128,128 126,126,126 124,124,124 125,125,125 124,124,124 128,128,128 129,129,129 123,123,123 125,125,125 211,211,211 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 123,123,123 124,124,124 124,124,124 126,126,126 124,124,124 125,125,125 124,124,124 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 124,124,124 125,125,125 125,125,125 125,125,125 126,126,126 124,124,124 125,125,125 124,124,124 125,125,125 153,153,153 249,249,249 254,254,254 255,255,255 255,255,255 226,226,226 131,131,131 126,126,126 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 128,128,128 128,128,128 127,127,127 128,128,128 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 126,126,126 126,126,126 126,126,126 127,127,127 127,127,127 128,128,128 127,127,127 126,126,126 126,126,126 125,125,125 131,131,131 227,227,227 254,254,254 254,254,254 255,255,255 240,240,240 139,139,139 126,126,126 126,126,126 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 124,124,124 127,127,127 125,125,125 126,126,126 125,125,125 125,125,125 126,126,126 126,126,126 128,128,128 123,123,123 124,124,124 124,124,124 125,125,125 126,126,126 124,124,124 124,124,124 124,124,124 127,127,127 127,127,127 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 170,170,170 126,126,126 125,125,125 125,125,125 155,155,155 248,248,248 254,254,254 254,254,254 248,248,248 158,158,158 126,126,126 125,125,125 123,123,123 124,124,124 126,126,126 127,127,127 128,128,128 126,126,126 124,124,124 123,123,123 123,123,123 123,123,123 128,128,128 128,128,128 128,128,128 128,128,128 124,124,124 123,123,123 125,125,125 124,124,124 213,213,213 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 126,126,126 127,127,127 141,141,141 241,241,241 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 195,195,195 127,127,127 127,127,127 127,127,127 123,123,123 154,154,154 249,249,249 255,255,255 255,255,255 254,254,254 226,226,226 131,131,131 124,124,124 128,128,128 125,125,125 127,127,127 127,127,127 127,127,127 124,124,124 126,126,126 125,125,125 126,126,126 126,126,126 126,126,126 128,128,128 129,129,129 126,126,126 127,127,127 127,127,127 128,128,128 126,126,126 128,128,128 127,127,127 127,127,127 126,126,126 125,125,125 124,124,124 127,127,127 125,125,125 127,127,127 127,127,127 127,127,127 124,124,124 126,126,126 124,124,124 131,131,131 227,227,227 254,254,254 254,254,254 255,255,255 241,241,241 139,139,139 128,128,128 128,128,128 127,127,127 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 171,171,171 127,127,127 126,126,126 125,125,125 153,153,153 248,248,248 172,172,172 171,171,171 250,250,250 156,156,156 130,130,130 122,122,122 124,124,124 168,168,168 254,254,254 254,254,254 254,254,254 194,194,194 126,126,126 126,126,126 124,124,124 137,137,137 242,242,242 253,253,253 254,254,254 230,230,230 131,131,131 125,125,125 125,125,125 124,124,124 214,214,214 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 125,125,125 126,126,126 140,140,140 241,241,241 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 193,193,193 126,126,126 126,126,126 127,127,127 124,124,124 152,152,152 249,249,249 255,255,255 255,255,255 255,255,255 227,227,227 130,130,130 127,127,127 126,126,126 127,127,127 125,125,125 126,126,126 126,126,126 128,128,128 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 125,125,125 127,127,127 126,126,126 127,127,127 128,128,128 124,124,124 131,131,131 227,227,227 254,254,254 255,255,255 255,255,255 240,240,240 138,138,138 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 172,172,172 126,126,126 126,126,126 126,126,126 125,125,125 125,125,125 125,125,125 169,169,169 248,248,248 157,157,157 125,125,125 125,125,125 124,124,124 168,168,168 255,255,255 254,254,254 255,255,255 193,193,193 125,125,125 124,124,124 124,124,124 137,137,137 242,242,242 253,253,253 254,254,254 228,228,228 132,132,132 123,123,123 125,125,125 124,124,124 214,214,214 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 128,128,128 129,129,129 143,143,143 242,242,242 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 198,198,198 129,129,129 129,129,129 129,129,129 123,123,123 153,153,153 249,249,249 254,254,254 255,255,255 254,254,254 226,226,226 132,132,132 124,124,124 127,127,127 123,123,123 124,124,124 122,122,122 125,125,125 124,124,124 126,126,126 124,124,124 126,126,126 124,124,124 125,125,125 125,125,125 126,126,126 124,124,124 123,123,123 123,123,123 125,125,125 124,124,124 126,126,126 124,124,124 127,127,127 125,125,125 124,124,124 125,125,125 127,127,127 123,123,123 123,123,123 123,123,123 125,125,125 125,125,125 127,127,127 125,125,125 130,130,130 227,227,227 254,254,254 254,254,254 254,254,254 240,240,240 138,138,138 128,128,128 128,128,128 127,127,127 156,156,156 250,250,250 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 249,249,249 157,157,157 127,127,127 128,128,128 128,128,128 134,134,134 229,229,229 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 173,173,173 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 174,174,174 128,128,128 129,129,129 128,128,128 122,122,122 125,125,125 125,125,125 171,171,171 249,249,249 155,155,155 126,126,126 126,126,126 128,128,128 171,171,171 255,255,255 254,254,254 255,255,255 193,193,193 128,128,128 129,129,129 128,128,128 141,141,141 241,241,241 254,254,254 254,254,254 228,228,228 135,135,135 129,129,129 124,124,124 126,126,126 213,213,213 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 126,126,126 126,126,126 125,125,125 125,125,125 124,124,124 127,127,127 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 127,127,127 125,125,125 124,124,124 125,125,125 126,126,126 126,126,126 126,126,126 152,152,152 249,249,249 254,254,254 254,254,254 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 229,229,229 136,136,136 129,129,129 129,129,129 128,128,128 135,135,135 228,228,228 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 254,254,254 254,254,254 241,241,241 139,139,139 128,128,128 128,128,128 127,127,127 156,156,156 250,250,250 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 249,249,249 157,157,157 127,127,127 128,128,128 128,128,128 134,134,134 229,229,229 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 173,173,173 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 193,193,193 123,123,123 127,127,127 125,125,125 126,126,126 125,125,125 125,125,125 126,126,126 127,127,127 126,126,126 123,123,123 169,169,169 248,248,248 158,158,158 126,126,126 128,128,128 128,128,128 171,171,171 255,255,255 254,254,254 255,255,255 193,193,193 128,128,128 129,129,129 128,128,128 141,141,141 241,241,241 254,254,254 254,254,254 228,228,228 135,135,135 129,129,129 128,128,128 123,123,123 213,213,213 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 126,126,126 125,125,125 125,125,125 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 125,125,125 152,152,152 249,249,249 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 126,126,126 126,126,126 133,133,133 228,228,228 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 240,240,240 139,139,139 126,126,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 193,193,193 125,125,125 127,127,127 123,123,123 128,128,128 126,126,126 128,128,128 128,128,128 123,123,123 125,125,125 126,126,126 170,170,170 249,249,249 156,156,156 128,128,128 123,123,123 124,124,124 168,168,168 255,255,255 254,254,254 255,255,255 193,193,193 125,125,125 124,124,124 124,124,124 137,137,137 242,242,242 253,253,253 254,254,254 228,228,228 132,132,132 123,123,123 124,124,124 124,124,124 213,213,213 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 126,126,126 126,126,126 125,125,125 128,128,128 125,125,125 127,127,127 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 126,126,126 127,127,127 127,127,127 125,125,125 125,125,125 126,126,126 127,127,127 125,125,125 151,151,151 248,248,248 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 225,225,225 131,131,131 124,124,124 126,126,126 125,125,125 139,139,139 240,240,240 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 228,228,228 134,134,134 125,125,125 125,125,125 126,126,126 133,133,133 227,227,227 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 140,140,140 123,123,123 126,126,126 124,124,124 132,132,132 227,227,227 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 240,240,240 138,138,138 128,128,128 128,128,128 127,127,127 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 192,192,192 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 128,128,128 128,128,128 127,127,127 127,127,127 215,215,215 254,254,254 248,248,248 159,159,159 125,125,125 128,128,128 124,124,124 168,168,168 254,254,254 254,254,254 254,254,254 194,194,194 126,126,126 126,126,126 124,124,124 137,137,137 242,242,242 253,253,253 254,254,254 230,230,230 131,131,131 125,125,125 126,126,126 124,124,124 213,213,213 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 229,229,229 133,133,133 125,125,125 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 126,126,126 127,127,127 127,127,127 128,128,128 128,128,128 128,128,128 128,128,128 124,124,124 152,152,152 249,249,249 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 226,226,226 132,132,132 123,123,123 125,125,125 125,125,125 140,140,140 240,240,240 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 228,228,228 133,133,133 125,125,125 125,125,125 126,126,126 132,132,132 228,228,228 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 239,239,239 141,141,141 124,124,124 125,125,125 124,124,124 132,132,132 226,226,226 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 240,240,240 139,139,139 126,126,126 126,126,126 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 124,124,124 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 126,126,126 126,126,126 128,128,128 123,123,123 124,124,124 124,124,124 125,125,125 126,126,126 124,124,124 124,124,124 124,124,124 127,127,127 126,126,126 126,126,126 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 214,214,214 125,125,125 128,128,128 126,126,126 127,127,127 127,127,127 128,128,128 127,127,127 154,154,154 249,249,249 172,172,172 124,124,124 131,131,131 124,124,124 129,129,129 124,124,124 123,123,123 124,124,124 126,126,126 127,127,127 128,128,128 126,126,126 124,124,124 123,123,123 123,123,123 123,123,123 128,128,128 128,128,128 128,128,128 128,128,128 124,124,124 123,123,123 125,125,125 124,124,124 127,127,127 124,124,124 213,213,213 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 252,252,252 254,254,254 254,254,254 254,254,254 228,228,228 134,134,134 126,126,126 123,123,123 123,123,123 126,126,126 126,126,126 126,126,126 124,124,124 124,124,124 123,123,123 122,122,122 124,124,124 121,121,121 125,125,125 125,125,125 124,124,124 124,124,124 124,124,124 123,123,123 123,123,123 125,125,125 126,126,126 126,126,126 124,124,124 125,125,125 123,123,123 125,125,125 154,154,154 249,249,249 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 255,255,255 228,228,228 132,132,132 122,122,122 124,124,124 127,127,127 143,143,143 242,242,242 253,253,253 252,252,252 255,255,255 255,255,255 254,254,254 228,228,228 132,132,132 123,123,123 124,124,124 126,126,126 131,131,131 228,228,228 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 241,241,241 140,140,140 122,122,122 124,124,124 125,125,125 133,133,133 229,229,229 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 241,241,241 139,139,139 126,126,126 125,125,125 123,123,123 124,124,124 125,125,125 126,126,126 127,127,127 129,129,129 128,128,128 127,127,127 127,127,127 126,126,126 123,123,123 125,125,125 126,126,126 125,125,125 123,123,123 122,122,122 123,123,123 123,123,123 122,122,122 123,123,123 120,120,120 122,122,122 123,123,123 123,123,123 124,124,124 131,131,131 228,228,228 254,254,254 254,254,254 255,255,255 212,212,212 123,123,123 126,126,126 124,124,124 127,127,127 125,125,125 127,127,127 125,125,125 154,154,154 247,247,247 169,169,169 125,125,125 127,127,127 124,124,124 124,124,124 124,124,124 125,125,125 124,124,124 126,126,126 125,125,125 125,125,125 124,124,124 127,127,127 128,128,128 127,127,127 126,126,126 125,125,125 126,126,126 126,126,126 126,126,126 124,124,124 123,123,123 124,124,124 124,124,124 125,125,125 122,122,122 213,213,213 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 230,230,230 132,132,132 123,123,123 124,124,124 127,127,127 142,142,142 242,242,242 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 228,228,228 133,133,133 125,125,125 124,124,124 128,128,128 132,132,132 227,227,227 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 241,241,241 141,141,141 124,124,124 125,125,125 126,126,126 133,133,133 229,229,229 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 255,255,255 229,229,229 135,135,135 128,128,128 174,174,174 255,255,255 255,255,255 254,254,254 255,255,255 228,228,228 132,132,132 126,126,126 128,128,128 126,126,126 144,144,144 241,241,241 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 171,171,171 123,123,123 125,125,125 124,124,124 131,131,131 226,226,226 255,255,255 251,251,251 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 171,171,171 126,126,126 126,126,126 127,127,127 154,154,154 249,249,249 170,170,170 125,125,125 126,126,126 126,126,126 125,125,125 128,128,128 126,126,126 129,129,129 126,126,126 126,126,126 127,127,127 129,129,129 125,125,125 129,129,129 129,129,129 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 126,126,126 128,128,128 125,125,125 124,124,124 213,213,213 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 254,254,254 254,254,254 214,214,214 130,130,130 228,228,228 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 227,227,227 133,133,133 213,213,213 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 255,255,255 228,228,228 132,132,132 123,123,123 126,126,126 127,127,127 142,142,142 241,241,241 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 229,229,229 135,135,135 126,126,126 126,126,126 126,126,126 135,135,135 228,228,228 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 144,144,144 125,125,125 126,126,126 126,126,126 135,135,135 229,229,229 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 249,249,249 151,151,151 126,126,126 119,119,119 124,124,124 123,123,123 123,123,123 142,142,142 241,241,241 254,254,254 170,170,170 126,126,126 129,129,129 125,125,125 128,128,128 172,172,172 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 169,169,169 125,125,125 125,125,125 126,126,126 152,152,152 246,246,246 169,169,169 123,123,123 127,127,127 123,123,123 125,125,125 124,124,124 128,128,128 125,125,125 127,127,127 127,127,127 124,124,124 125,125,125 127,127,127 124,124,124 124,124,124 124,124,124 126,126,126 126,126,126 125,125,125 125,125,125 127,127,127 126,126,126 125,125,125 124,124,124 126,126,126 123,123,123 213,213,213 254,254,254 253,253,253 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 255,255,255 254,254,254 255,255,255 248,248,248 158,158,158 126,126,126 127,127,127 125,125,125 195,195,195 254,254,254 253,253,253 254,254,254 253,253,253 197,197,197 128,128,128 191,191,191 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 249,249,249 159,159,159 141,141,141 241,241,241 253,253,253 254,254,254 254,254,254 193,193,193 128,128,128 126,126,126 124,124,124 155,155,155 248,248,248 254,254,254 255,255,255 254,254,254 253,253,253 255,255,255 254,254,254 229,229,229 131,131,131 124,124,124 126,126,126 127,127,127 141,141,141 242,242,242 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 228,228,228 132,132,132 125,125,125 124,124,124 127,127,127 132,132,132 227,227,227 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 241,241,241 141,141,141 123,123,123 125,125,125 127,127,127 132,132,132 228,228,228 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 241,241,241 141,141,141 126,126,126 130,130,130 125,125,125 131,131,131 126,126,126 126,126,126 126,126,126 128,128,128 125,125,125 127,127,127 127,127,127 125,125,125 214,214,214 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 171,171,171 127,127,127 128,128,128 127,127,127 155,155,155 249,249,249 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 226,226,226 138,138,138 124,124,124 126,126,126 129,129,129 129,129,129 128,128,128 124,124,124 214,214,214 254,254,254 253,253,253 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,252,252 254,254,254 253,253,253 215,215,215 125,125,125 127,127,127 126,126,126 125,125,125 129,129,129 228,228,228 226,226,226 137,137,137 125,125,125 125,125,125 125,125,125 156,156,156 243,243,243 254,254,254 253,253,253 174,174,174 127,127,127 125,125,125 123,123,123 125,125,125 194,194,194 253,253,253 253,253,253 229,229,229 135,135,135 124,124,124 126,126,126 127,127,127 123,123,123 194,194,194 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 229,229,229 134,134,134 124,124,124 127,127,127 127,127,127 142,142,142 242,242,242 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 230,230,230 136,136,136 129,129,129 128,128,128 127,127,127 135,135,135 229,229,229 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 240,240,240 143,143,143 125,125,125 127,127,127 127,127,127 134,134,134 230,230,230 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 169,169,169 128,128,128 129,129,129 124,124,124 127,127,127 127,127,127 126,126,126 128,128,128 128,128,128 129,129,129 128,128,128 158,158,158 249,249,249 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 171,171,171 128,128,128 128,128,128 128,128,128 156,156,156 248,248,248 254,254,254 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 228,228,228 134,134,134 124,124,124 127,127,127 127,127,127 125,125,125 127,127,127 126,126,126 127,127,127 124,124,124 190,190,190 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 247,247,247 156,156,156 126,126,126 123,123,123 127,127,127 123,123,123 190,190,190 255,255,255 253,253,253 171,171,171 123,123,123 126,126,126 123,123,123 122,122,122 212,212,212 255,255,255 254,254,254 227,227,227 133,133,133 124,124,124 125,125,125 124,124,124 136,136,136 242,242,242 254,254,254 254,254,254 213,213,213 124,124,124 123,123,123 125,125,125 125,125,125 140,140,140 240,240,240 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 229,229,229 133,133,133 122,122,122 125,125,125 126,126,126 127,127,127 127,127,127 124,124,124 125,125,125 124,124,124 125,125,125 126,126,126 125,125,125 125,125,125 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 125,125,125 124,124,124 127,127,127 127,127,127 125,125,125 123,123,123 125,125,125 128,128,128 133,133,133 230,230,230 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 229,229,229 132,132,132 129,129,129 129,129,129 126,126,126 126,126,126 124,124,124 126,126,126 124,124,124 126,126,126 125,125,125 128,128,128 126,126,126 125,125,125 127,127,127 124,124,124 171,171,171 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 170,170,170 125,125,125 124,124,124 126,126,126 154,154,154 248,248,248 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 242,242,242 140,140,140 128,128,128 123,123,123 129,129,129 125,125,125 128,128,128 128,128,128 128,128,128 128,128,128 126,126,126 127,127,127 129,129,129 135,135,135 230,230,230 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 211,211,211 127,127,127 126,126,126 127,127,127 126,126,126 138,138,138 240,240,240 255,255,255 254,254,254 214,214,214 126,126,126 125,125,125 123,123,123 124,124,124 168,168,168 254,254,254 255,255,255 254,254,254 170,170,170 125,125,125 123,123,123 124,124,124 123,123,123 192,192,192 254,254,254 254,254,254 249,249,249 155,155,155 124,124,124 125,125,125 125,125,125 127,127,127 193,193,193 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 229,229,229 133,133,133 123,123,123 128,128,128 127,127,127 126,126,126 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 128,128,128 126,126,126 128,128,128 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 128,128,128 126,126,126 127,127,127 126,126,126 128,128,128 135,135,135 229,229,229 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,253,253 193,193,193 124,124,124 128,128,128 127,127,127 126,126,126 125,125,125 127,127,127 126,126,126 128,128,128 125,125,125 128,128,128 124,124,124 127,127,127 126,126,126 127,127,127 124,124,124 124,124,124 123,123,123 125,125,125 123,123,123 126,126,126 124,124,124 123,123,123 122,122,122 123,123,123 120,120,120 124,124,124 125,125,125 130,130,130 226,226,226 254,254,254 254,254,254 254,254,254 249,249,249 156,156,156 128,128,128 127,127,127 127,127,127 155,155,155 247,247,247 254,254,254 255,255,255 254,254,254 228,228,228 131,131,131 127,127,127 127,127,127 124,124,124 129,129,129 124,124,124 127,127,127 127,127,127 126,126,126 214,214,214 195,195,195 125,125,125 128,128,128 124,124,124 124,124,124 125,125,125 125,125,125 127,127,127 141,141,141 240,240,240 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 241,241,241 139,139,139 127,127,127 127,127,127 124,124,124 126,126,126 192,192,192 255,255,255 254,254,254 255,255,255 242,242,242 144,144,144 126,126,126 127,127,127 124,124,124 132,132,132 228,228,228 254,254,254 254,254,254 228,228,228 134,134,134 125,125,125 124,124,124 124,124,124 143,143,143 241,241,241 254,254,254 254,254,254 213,213,213 125,125,125 125,125,125 126,126,126 126,126,126 141,141,141 241,241,241 255,255,255 254,254,254 255,255,255 255,255,255 229,229,229 134,134,134 122,122,122 126,126,126 126,126,126 126,126,126 128,128,128 124,124,124 124,124,124 125,125,125 126,126,126 127,127,127 127,127,127 124,124,124 126,126,126 126,126,126 128,128,128 125,125,125 127,127,127 126,126,126 126,126,126 124,124,124 123,123,123 126,126,126 127,127,127 124,124,124 123,123,123 125,125,125 128,128,128 135,135,135 230,230,230 255,255,255 254,254,254 255,255,255 209,209,209 125,125,125 123,123,123 124,124,124 124,124,124 127,127,127 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 127,127,127 128,128,128 126,126,126 128,128,128 127,127,127 125,125,125 125,125,125 127,127,127 127,127,127 129,129,129 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 124,124,124 124,124,124 125,125,125 126,126,126 192,192,192 255,255,255 226,226,226 131,131,131 125,125,125 125,125,125 126,126,126 127,127,127 127,127,127 125,125,125 151,151,151 241,241,241 154,154,154 123,123,123 127,127,127 123,123,123 123,123,123 121,121,121 126,126,126 123,123,123 125,125,125 123,123,123 127,127,127 125,125,125 214,214,214 255,255,255 254,254,254 192,192,192 126,126,126 124,124,124 127,127,127 125,125,125 126,126,126 124,124,124 125,125,125 124,124,124 123,123,123 130,130,130 227,227,227 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 193,193,193 124,124,124 124,124,124 125,125,125 127,127,127 140,140,140 240,240,240 255,255,255 254,254,254 254,254,254 254,254,254 168,168,168 125,125,125 124,124,124 124,124,124 124,124,124 191,191,191 253,253,253 254,254,254 248,248,248 156,156,156 126,126,126 124,124,124 123,123,123 124,124,124 191,191,191 255,255,255 254,254,254 248,248,248 156,156,156 125,125,125 124,124,124 126,126,126 124,124,124 194,194,194 254,254,254 255,255,255 255,255,255 255,255,255 226,226,226 133,133,133 122,122,122 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 127,127,127 126,126,126 125,125,125 125,125,125 124,124,124 127,127,127 135,135,135 230,230,230 255,255,255 254,254,254 254,254,254 255,255,255 194,194,194 125,125,125 125,125,125 124,124,124 125,125,125 125,125,125 127,127,127 126,126,126 126,126,126 125,125,125 125,125,125 124,124,124 124,124,124 124,124,124 125,125,125 125,125,125 124,124,124 124,124,124 124,124,124 123,123,123 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 123,123,123 124,124,124 125,125,125 125,125,125 141,141,141 240,240,240 255,255,255 242,242,242 142,142,142 126,126,126 124,124,124 125,125,125 126,126,126 127,127,127 128,128,128 154,154,154 248,248,248 227,227,227 132,132,132 125,125,125 124,124,124 125,125,125 126,126,126 124,124,124 123,123,123 125,125,125 124,124,124 139,139,139 241,241,241 255,255,255 255,255,255 254,254,254 254,254,254 191,191,191 125,125,125 125,125,125 125,125,125 124,124,124 124,124,124 125,125,125 124,124,124 127,127,127 169,169,169 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 228,228,228 131,131,131 125,125,125 127,127,127 123,123,123 126,126,126 214,214,214 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 228,228,228 133,133,133 125,125,125 123,123,123 124,124,124 154,154,154 249,249,249 255,255,255 254,254,254 212,212,212 123,123,123 123,123,123 124,124,124 125,125,125 140,140,140 241,241,241 254,254,254 252,252,252 212,212,212 127,127,127 125,125,125 124,124,124 124,124,124 140,140,140 241,241,241 255,255,255 254,254,254 253,253,253 226,226,226 131,131,131 122,122,122 125,125,125 124,124,124 123,123,123 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 126,126,126 126,126,126 125,125,125 124,124,124 123,123,123 126,126,126 133,133,133 228,228,228 254,254,254 254,254,254 255,255,255 254,254,254 248,248,248 156,156,156 123,123,123 125,125,125 128,128,128 126,126,126 125,125,125 124,124,124 124,124,124 127,127,127 127,127,127 129,129,129 131,131,131 227,227,227 254,254,254 255,255,255 254,254,254 193,193,193 126,126,126 127,127,127 124,124,124 126,126,126 125,125,125 126,126,126 124,124,124 125,125,125 125,125,125 125,125,125 127,127,127 127,127,127 125,125,125 126,126,126 125,125,125 214,214,214 254,254,254 255,255,255 248,248,248 156,156,156 126,126,126 124,124,124 126,126,126 127,127,127 126,126,126 127,127,127 155,155,155 247,247,247 255,255,255 193,193,193 127,127,127 127,127,127 126,126,126 125,125,125 124,124,124 126,126,126 124,124,124 194,194,194 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 228,228,228 134,134,134 127,127,127 125,125,125 125,125,125 124,124,124 126,126,126 138,138,138 241,241,241 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 241,241,241 137,137,137 123,123,123 128,128,128 155,155,155 249,249,249 254,254,254 252,252,252 255,255,255 253,253,253 255,255,255 248,248,248 155,155,155 124,124,124 212,212,212 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 241,241,241 140,140,140 156,156,156 248,248,248 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 240,240,240 140,140,140 124,124,124 124,124,124 124,124,124 183,183,183 241,241,241 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 241,241,241 142,142,142 124,124,124 128,128,128 126,126,126 134,134,134 230,230,230 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 242,242,242 140,140,140 124,124,124 125,125,125 125,125,125 125,125,125 127,127,127 127,127,127 140,140,140 241,241,241 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 172,172,172 126,126,126 127,127,127 127,127,127 125,125,125 125,125,125 125,125,125 122,122,122 155,155,155 248,248,248 255,255,255 255,255,255 255,255,255 193,193,193 126,126,126 123,123,123 126,126,126 126,126,126 127,127,127 126,126,126 212,212,212 254,254,254 255,255,255 248,248,248 157,157,157 124,124,124 126,126,126 126,126,126 125,125,125 212,212,212 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 212,212,212 124,124,124 127,127,127 124,124,124 124,124,124 214,214,214 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 250,250,250 254,254,254 240,240,240 148,148,148 229,229,229 254,254,254 253,253,253 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 195,195,195 140,140,140 240,240,240 253,253,253 254,254,254 255,255,255 252,252,252 253,253,253 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 238,238,238 140,140,140 123,123,123 126,126,126 124,124,124 132,132,132 226,226,226 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 214,214,214 125,125,125 128,128,128 156,156,156 249,249,249 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 210,210,210 125,125,125 123,123,123 127,127,127 124,124,124 133,133,133 227,227,227 254,254,254 254,254,254 252,252,252 254,254,254 214,214,214 127,127,127 170,170,170 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 241,241,241 140,140,140 156,156,156 248,248,248 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 252,252,252 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 252,252,252 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 252,252,252 254,254,254 254,254,254 253,253,253 255,255,255 253,253,253 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 252,252,252 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 253,253,253 254,254,254 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 255,255,255 253,253,253 255,255,255 253,253,253 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 253,253,253 255,255,255 253,253,253 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 252,252,252 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 253,253,253 253,253,253 254,254,254 253,253,253 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_noised.txt diff --git a/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_original.txt new file mode 100644 index 0000000..ae0d6fb --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/_original.txt @@ -0,0 +1,60 @@ +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,253 253,255,255 255,255,254 253,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,254,254 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 251,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,253,252 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 254,254,254 255,255,255 253,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,255 255,255,255 254,254,254 254,254,254 255,255,255 253,255,255 255,255,254 254,254,254 255,255,255 253,252,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,255,255 255,255,255 255,255,255 255,255,255 255,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,254 255,255,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 254,254,254 255,254,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,255,253 255,255,255 255,255,255 255,255,255 255,254,254 254,254,254 252,254,254 255,255,255 254,254,254 255,255,255 253,255,255 255,255,255 253,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,255,253 255,255,255 253,255,255 255,255,254 253,255,255 255,255,254 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,255,253 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,253 255,255,255 252,255,253 255,254,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,255,255 255,255,252 255,254,255 255,255,255 255,255,255 255,254,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,253 255,254,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 149,191,236 123,124,122 127,125,124 121,123,124 125,125,125 217,169,127 254,255,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 253,255,255 255,255,254 255,254,255 255,255,254 255,255,255 255,254,255 253,254,252 255,255,255 255,255,255 255,255,255 254,253,255 255,255,255 254,254,254 255,255,255 250,253,251 253,255,255 253,254,252 255,255,255 191,236,255 124,125,146 123,125,125 126,124,124 123,125,125 147,123,123 255,234,189 254,254,254 255,253,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,254 255,255,255 255,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 251,253,253 255,254,254 254,254,254 125,169,216 126,124,124 123,125,125 123,125,125 195,146,124 252,255,236 255,254,255 253,255,255 255,254,255 254,253,255 255,255,255 255,255,255 253,254,255 238,255,251 122,145,193 126,125,121 128,128,128 127,126,128 215,170,126 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,194,236 126,124,124 124,126,126 126,124,123 123,126,124 215,170,127 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 255,255,255 253,255,255 255,254,255 252,255,253 255,255,255 254,254,254 255,254,255 253,255,254 255,254,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,254 255,255,255 254,254,254 255,254,255 195,237,255 126,127,148 125,125,125 124,126,126 126,126,126 146,126,125 255,236,191 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,253,253 255,254,255 252,253,251 255,255,255 124,168,215 123,123,123 125,125,125 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 121,124,122 126,124,124 122,123,121 123,122,124 123,123,123 122,124,124 123,122,124 124,124,124 120,123,121 126,123,125 120,123,121 123,123,123 123,122,124 123,123,123 123,123,123 122,123,121 123,123,123 122,123,121 124,125,123 124,124,124 123,123,123 124,124,124 211,167,120 254,254,254 254,254,254 255,255,255 255,255,255 255,255,254 125,170,214 126,124,124 126,126,126 126,126,126 191,145,121 254,255,235 255,255,255 253,255,255 255,254,255 253,255,255 255,253,255 255,255,255 255,255,251 166,212,255 128,127,123 121,123,123 128,126,126 123,123,123 128,125,127 237,194,151 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,255,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,193,238 123,126,124 129,127,126 125,125,125 131,129,129 217,172,128 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,255 255,255,254 255,254,255 192,235,254 127,127,151 126,126,126 128,126,126 126,127,125 148,127,126 255,236,193 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,255 255,255,254 124,168,215 126,124,124 125,125,125 124,125,123 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 129,127,127 122,125,123 128,126,126 123,125,125 126,125,127 127,125,125 129,127,126 128,128,128 128,125,127 122,124,124 126,126,126 125,125,125 125,125,125 124,124,124 125,126,124 125,125,125 123,123,123 123,125,125 125,125,125 125,126,124 125,125,125 127,125,125 212,169,126 255,255,255 255,255,255 253,255,255 255,255,255 255,255,254 128,170,215 127,125,125 123,125,125 125,125,125 193,146,125 252,255,233 255,255,255 251,255,255 255,255,254 255,254,255 255,255,255 255,255,255 236,255,255 127,149,190 128,125,127 127,130,128 130,127,129 127,129,130 235,193,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,254 255,254,255 255,255,255 255,254,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 149,194,238 123,124,122 125,126,130 123,124,120 127,126,130 124,125,123 125,127,128 126,126,126 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 125,124,126 125,126,124 125,124,126 121,124,122 215,167,125 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 254,254,254 255,255,255 253,255,255 254,255,253 255,255,255 253,255,254 255,254,255 194,237,255 126,124,146 124,124,124 125,124,126 126,127,125 148,124,126 255,238,191 255,254,255 255,254,255 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,254,255 253,255,255 128,170,215 124,123,125 126,126,126 124,124,124 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,126,124 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 125,125,125 127,125,125 125,125,125 123,125,125 126,126,126 125,126,124 125,125,125 125,125,125 126,125,127 124,125,123 125,125,125 124,125,123 125,124,126 127,125,125 215,170,127 255,255,255 255,254,255 255,255,254 253,255,255 255,255,252 125,169,216 127,125,124 126,125,127 128,126,125 193,147,123 254,255,235 255,255,255 251,255,255 255,254,255 253,255,255 255,254,254 255,255,255 173,212,255 123,125,125 128,127,131 124,128,123 128,125,127 123,125,125 129,124,125 125,127,127 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 235,192,149 252,254,254 255,254,255 252,254,254 255,254,255 252,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 153,196,239 126,129,127 130,128,128 125,126,124 128,127,129 127,128,126 127,129,130 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,127,129 125,127,127 127,125,125 124,126,127 217,169,127 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 254,255,253 255,255,255 255,255,255 255,255,255 196,239,255 129,127,149 127,127,127 128,127,129 129,130,128 150,129,128 255,238,193 255,255,255 255,255,255 255,255,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,255,253 253,255,255 255,255,254 125,169,216 127,125,124 124,126,127 127,128,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 129,127,127 127,127,127 126,126,126 126,126,126 127,127,127 125,125,125 126,127,125 125,125,125 126,126,126 125,126,124 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 126,127,125 125,125,125 124,124,124 124,124,124 123,125,126 213,168,125 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 129,171,218 129,127,127 125,127,127 128,126,125 193,147,123 254,255,234 255,255,255 251,255,255 255,255,255 255,254,255 254,254,254 212,254,253 129,127,173 127,128,126 128,126,126 123,126,124 131,126,128 126,128,128 129,129,129 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 128,128,128 235,192,149 252,254,254 255,255,255 253,255,255 255,254,255 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,197,240 126,127,125 130,127,129 125,124,120 126,125,129 126,124,123 126,128,129 129,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 123,125,125 127,125,125 122,125,123 215,170,127 255,255,255 255,255,255 255,255,255 191,234,253 120,123,144 123,123,123 121,124,122 124,124,124 124,123,125 126,124,124 124,124,124 123,123,123 126,124,123 127,125,125 124,126,126 126,126,126 127,127,127 125,123,123 126,124,124 124,123,125 126,127,125 125,124,126 126,126,126 125,125,125 125,126,124 122,124,124 123,123,123 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 255,215,170 255,255,254 255,254,255 255,255,254 255,254,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 237,255,255 128,151,197 129,128,130 132,130,130 129,128,130 151,130,129 255,240,195 255,255,255 255,255,255 253,255,252 255,254,255 255,255,254 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,254 126,170,217 128,126,125 125,127,127 126,127,125 190,146,123 253,255,234 255,255,255 251,255,255 255,254,255 253,255,255 255,255,255 124,169,213 128,128,128 126,128,128 127,127,127 124,124,124 125,125,125 127,127,127 127,128,126 127,129,130 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 234,191,148 252,255,253 255,255,255 252,255,253 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,195,238 127,128,126 127,127,127 125,124,120 125,126,130 126,124,123 125,127,128 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 123,125,125 125,126,124 125,125,125 123,126,124 216,168,126 255,255,255 255,255,255 255,255,255 195,238,255 125,128,149 127,127,127 125,125,125 129,127,127 128,127,129 130,128,128 128,128,128 126,126,126 126,126,126 126,128,128 127,127,127 127,129,129 128,128,128 127,127,127 128,129,127 128,128,128 128,128,128 127,128,126 127,127,127 128,128,128 126,125,127 128,126,126 125,124,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 255,214,169 252,254,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 237,255,255 128,151,196 130,128,128 132,130,129 127,129,130 151,130,129 255,239,197 255,255,254 255,254,255 255,255,254 255,254,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 255,255,254 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 128,171,214 127,127,127 129,129,129 129,129,129 194,147,125 255,255,238 253,255,255 255,255,254 253,255,255 255,254,255 174,217,255 130,128,128 122,121,123 123,123,123 124,124,124 125,124,126 125,125,125 125,125,125 122,124,124 123,123,123 128,128,128 125,127,127 126,126,126 124,124,124 122,122,122 127,125,125 124,126,126 126,126,126 235,192,149 252,254,254 255,255,255 252,254,254 255,254,255 254,254,254 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 148,193,236 125,125,125 126,125,127 126,124,123 127,127,127 126,126,126 126,126,126 128,128,128 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 126,126,126 123,125,125 215,168,124 253,255,255 253,254,252 253,253,253 192,235,255 123,127,146 125,125,125 122,124,124 127,125,125 125,125,125 125,125,125 126,126,126 125,125,125 126,126,126 125,126,124 127,126,128 128,126,126 126,128,129 126,124,123 126,126,126 125,127,127 128,128,128 124,124,124 129,127,126 124,126,127 127,127,127 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 255,214,169 254,254,254 254,254,254 255,255,254 253,255,255 255,253,254 213,255,255 124,123,167 125,125,125 124,124,124 122,124,124 123,123,123 126,126,126 127,125,125 125,126,124 125,125,125 127,128,126 127,127,127 126,127,125 124,126,126 126,126,126 124,124,124 125,125,125 125,125,125 125,126,124 124,123,125 124,125,123 125,125,125 124,124,124 124,124,124 125,125,125 124,123,125 125,128,126 129,127,127 125,125,125 145,124,123 255,237,191 255,254,255 253,254,252 254,254,254 194,237,255 126,127,148 126,126,126 127,125,124 125,124,126 128,128,128 127,126,128 126,126,126 125,125,125 126,126,126 127,128,126 235,194,149 255,255,255 195,238,255 126,124,146 124,126,126 125,127,127 128,129,127 128,127,129 237,195,150 255,254,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 147,194,238 127,125,124 125,124,126 128,127,131 128,129,127 149,128,130 255,236,191 254,254,254 255,255,255 253,255,254 255,254,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 153,195,240 127,128,126 128,129,127 125,125,125 128,128,128 219,171,129 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 253,255,255 194,237,255 123,126,147 125,125,125 124,125,123 127,125,125 126,126,126 127,127,127 126,126,126 127,127,127 126,127,125 126,126,126 127,127,127 127,125,125 124,126,126 126,127,125 126,126,126 126,125,127 127,127,127 126,125,127 127,127,127 126,125,127 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 255,215,170 253,253,253 253,255,255 255,255,255 255,255,255 255,254,255 214,255,255 124,123,167 127,127,127 126,126,126 126,126,126 125,125,125 126,128,129 128,126,126 127,127,127 125,125,125 125,125,125 125,124,126 127,128,126 126,125,127 126,127,125 126,126,126 128,126,126 127,127,127 127,125,125 122,124,124 124,124,124 125,125,125 126,127,125 124,124,124 126,126,126 124,124,124 130,127,129 125,127,127 128,126,126 145,125,124 255,238,196 255,255,255 255,255,255 255,255,255 195,236,255 123,127,146 128,126,126 123,126,124 130,128,128 128,127,129 129,129,129 126,126,126 124,123,125 128,126,125 121,124,129 243,196,144 230,255,255 132,149,192 125,127,128 126,124,124 127,127,127 125,127,127 171,125,124 255,255,215 255,255,255 255,254,255 255,255,254 255,255,255 255,254,255 193,239,255 128,125,147 123,126,124 128,127,129 128,126,126 125,127,127 238,196,151 253,255,255 253,255,255 255,255,255 253,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 150,195,238 128,128,128 128,129,127 127,126,128 128,128,128 220,172,130 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,254 255,255,255 253,255,254 255,255,255 253,255,255 255,255,255 192,234,253 122,125,146 125,125,125 124,124,124 127,124,126 124,126,127 125,125,125 124,126,126 123,125,125 127,128,126 125,123,122 126,126,126 125,125,125 126,126,126 125,126,124 127,125,125 123,125,125 126,126,126 124,124,124 128,126,125 123,125,126 127,127,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 255,215,167 254,253,255 253,255,254 255,254,255 255,255,254 255,255,255 212,255,255 125,122,167 125,125,125 125,125,125 125,125,125 126,127,125 125,126,124 125,125,125 124,124,124 127,125,125 126,127,125 127,125,125 127,127,127 126,126,126 126,126,126 127,127,127 128,128,128 128,128,128 123,125,125 127,126,128 125,125,125 126,125,127 126,126,126 126,126,126 126,127,125 126,126,126 121,124,122 125,125,125 123,123,123 145,123,125 255,236,191 255,255,255 254,254,254 255,255,255 189,232,249 124,125,145 124,123,125 127,128,126 123,125,126 127,125,125 127,127,127 128,126,125 121,122,120 123,125,126 128,125,121 230,195,155 135,173,215 119,122,126 126,125,121 126,126,126 123,126,124 128,126,126 255,216,172 255,255,254 253,255,255 255,255,254 253,255,255 255,255,255 234,255,255 126,145,190 125,130,129 128,126,125 128,127,129 129,126,128 193,149,126 255,255,237 254,255,253 255,255,255 254,255,253 253,255,255 255,255,255 255,255,254 253,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,253,255 252,252,252 253,255,255 253,254,252 255,254,255 193,234,255 127,125,147 126,126,126 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 127,126,128 124,125,123 127,126,128 126,124,123 127,127,127 127,127,127 128,128,128 127,128,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 128,128,128 191,147,123 255,255,236 253,255,254 255,254,255 253,255,255 255,252,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,255 253,255,255 255,255,254 255,254,255 196,239,255 133,130,155 130,130,130 132,130,130 128,128,128 151,129,131 255,239,194 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 251,255,255 255,254,255 253,255,255 255,254,255 255,255,255 214,255,254 123,123,169 125,125,125 125,125,125 126,126,126 125,124,126 126,125,127 126,126,126 126,126,126 124,126,126 128,128,128 127,127,127 126,126,126 126,126,126 126,127,125 125,125,125 128,126,126 126,126,126 128,125,127 122,124,124 125,125,125 125,125,125 126,125,127 125,125,125 125,125,125 125,125,125 129,127,127 124,126,126 128,125,127 144,124,123 255,237,195 255,255,255 255,255,254 255,254,255 195,236,255 124,125,145 124,124,124 125,126,124 127,126,130 128,128,128 128,128,128 127,125,125 125,124,126 124,125,121 124,125,129 131,128,123 121,125,130 130,128,127 122,124,125 124,122,122 131,130,132 215,174,129 255,255,254 251,255,255 255,255,254 253,255,255 255,255,254 255,255,255 150,192,237 124,130,125 131,126,128 127,130,128 130,128,128 174,127,129 255,255,213 255,254,255 255,254,255 253,255,255 255,255,255 255,254,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,255,253 255,255,255 255,255,254 255,254,255 195,237,255 126,127,148 124,124,124 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,127,125 127,127,127 127,127,127 126,128,129 129,127,127 126,128,129 128,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 126,125,127 191,147,123 255,255,237 255,255,254 255,254,255 255,255,255 254,253,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,254 255,255,255 255,255,254 255,254,255 195,236,255 126,127,148 125,125,125 126,125,127 126,126,126 148,127,126 255,237,192 255,254,255 255,254,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,255,253 254,255,253 255,255,255 255,255,254 255,254,254 214,255,255 125,123,169 128,128,128 126,128,128 128,127,129 191,150,125 255,255,239 255,255,255 255,255,254 253,255,255 255,254,255 255,255,254 239,255,255 125,149,195 127,126,128 131,129,128 128,128,128 151,130,129 255,239,196 253,255,255 255,255,255 253,255,254 255,254,255 255,255,255 255,255,255 127,172,216 127,127,127 124,126,126 126,126,126 145,125,124 255,239,194 255,255,255 255,255,254 255,254,255 193,235,254 121,125,144 126,125,127 125,126,124 125,124,126 124,126,126 126,126,126 128,126,126 125,125,125 123,125,125 128,126,126 231,193,151 178,219,255 121,123,124 128,127,123 124,124,124 124,123,125 126,126,126 125,122,124 125,128,126 124,123,125 126,127,125 122,123,127 125,126,124 127,127,127 126,126,126 125,125,125 126,126,126 126,124,124 127,127,127 125,124,128 126,126,126 126,124,124 121,123,123 255,213,170 253,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,255,253 253,255,255 255,255,254 255,254,255 193,235,254 127,125,147 125,125,125 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 129,129,129 127,127,127 127,127,127 126,126,126 126,126,126 126,126,126 125,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 125,125,125 193,147,123 254,255,235 253,255,254 255,255,254 253,255,255 253,254,252 255,254,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 253,255,255 255,255,254 255,255,255 195,238,255 129,127,149 126,128,128 127,127,127 128,128,128 150,126,126 255,239,194 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 253,255,255 255,255,254 255,255,255 255,254,255 213,255,255 126,124,170 129,128,130 128,128,128 128,128,128 193,149,126 255,255,239 255,255,255 255,255,255 253,255,255 255,255,254 255,255,255 237,255,255 126,149,195 128,125,127 130,128,128 127,127,127 151,130,129 255,236,194 255,255,255 255,254,255 255,255,254 255,254,255 255,255,255 255,255,255 128,170,215 127,126,128 126,126,126 129,127,127 146,124,126 255,240,195 253,255,255 255,255,254 255,254,255 255,254,255 255,255,255 255,255,254 253,255,255 129,171,216 130,128,128 130,131,129 128,128,128 191,147,124 255,255,235 253,254,255 255,255,251 237,255,255 132,152,199 128,128,128 127,125,124 128,128,128 126,126,126 128,127,129 127,125,124 127,129,129 129,127,127 127,128,126 126,126,126 127,127,127 127,128,126 128,128,128 125,125,125 126,128,129 128,126,126 127,127,127 127,127,127 126,124,124 126,125,127 255,216,171 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,254 255,254,255 195,237,255 127,125,147 125,125,125 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 126,126,126 127,127,127 127,127,127 126,126,126 127,127,127 126,128,128 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 124,124,124 190,146,123 254,255,236 253,255,255 255,254,255 255,254,255 192,235,254 121,123,147 124,124,124 122,122,122 123,123,123 124,125,123 123,123,123 124,124,124 124,124,124 123,123,123 123,123,123 123,125,125 126,124,124 126,126,126 126,124,124 125,125,125 126,124,124 123,123,123 124,123,125 125,126,124 125,125,125 124,126,126 124,123,125 126,127,125 123,125,126 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 145,125,124 255,233,191 255,255,252 255,254,255 255,255,254 213,255,254 125,123,169 125,125,125 126,124,124 126,126,126 126,126,126 126,126,126 126,126,126 127,127,127 127,127,127 128,128,128 127,126,128 127,128,126 127,127,127 129,127,127 125,124,126 125,125,125 125,125,125 126,126,126 125,125,125 128,126,126 123,125,125 126,126,126 123,125,125 124,124,124 125,125,125 125,127,127 126,126,126 126,126,126 147,126,125 255,237,192 255,254,255 255,255,254 253,255,255 255,255,255 255,255,254 255,255,255 255,255,252 127,169,214 127,127,127 126,126,126 127,127,127 194,150,127 255,255,235 255,255,255 255,255,254 237,255,255 127,147,194 127,126,128 126,126,126 126,126,126 124,126,127 127,127,127 127,127,127 127,127,127 124,124,124 125,123,123 123,123,123 127,127,127 128,127,129 126,126,126 124,124,124 125,125,125 123,125,126 128,128,128 129,129,129 125,123,123 125,125,125 254,212,169 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 123,123,123 123,126,124 124,123,125 126,126,126 124,123,125 124,126,126 124,124,124 124,124,124 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 123,123,123 126,124,124 127,125,124 124,126,127 127,125,125 126,125,127 126,124,124 125,125,125 126,124,123 125,125,125 192,145,123 255,255,237 255,255,254 255,255,255 255,255,255 192,234,253 124,125,146 128,126,126 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 126,125,127 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 128,128,128 128,128,128 127,127,127 128,128,128 128,128,128 128,127,129 127,127,127 128,129,127 127,127,127 127,127,127 129,127,126 126,126,126 126,126,126 126,126,126 127,127,127 129,127,127 128,128,128 127,127,127 126,126,126 125,127,127 125,125,125 145,125,124 255,235,193 253,255,254 255,254,255 255,255,255 212,255,255 125,124,168 125,127,128 126,126,126 126,126,126 125,125,125 126,125,127 127,125,125 125,125,125 124,123,125 127,127,127 127,125,125 126,126,126 125,125,125 125,125,125 126,126,126 126,126,126 128,129,127 123,123,123 124,124,124 124,124,124 125,125,125 126,126,126 124,124,124 124,124,124 124,124,124 127,127,127 127,127,127 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,254,255 255,254,255 255,254,253 255,255,255 255,255,254 126,171,215 128,126,126 124,126,127 127,125,124 192,147,126 255,255,235 253,255,255 255,255,254 236,255,255 131,150,195 126,126,126 125,125,125 123,123,123 126,124,124 125,127,127 127,127,127 128,128,128 125,127,128 126,124,123 123,123,123 123,123,123 123,123,123 128,128,128 128,128,128 128,128,128 128,128,128 126,124,124 123,123,123 125,125,125 123,125,125 255,215,170 253,255,255 255,255,255 255,254,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 126,127,125 126,128,128 172,126,125 255,255,215 255,254,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,254 255,255,255 151,196,240 129,127,127 126,128,129 127,127,127 122,124,124 191,147,124 255,255,238 255,255,255 255,255,255 255,254,255 192,234,253 124,125,146 124,125,123 128,128,128 125,126,124 127,127,127 127,127,127 127,126,128 126,124,124 126,126,126 125,125,125 126,126,126 128,126,125 126,126,126 128,128,128 129,129,129 126,126,126 127,127,127 126,128,128 128,128,128 126,126,126 128,129,127 127,126,128 127,127,127 126,126,126 125,125,125 124,124,124 126,128,128 125,125,125 129,127,127 127,127,127 127,127,127 124,124,124 126,126,126 124,124,124 145,125,124 255,234,192 255,255,254 255,254,255 255,255,255 213,255,255 125,124,168 128,128,128 128,128,128 126,128,128 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 127,126,128 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 253,255,254 255,255,255 253,255,255 255,255,254 128,170,215 129,127,127 125,127,127 125,125,125 189,147,124 255,255,236 129,173,214 214,171,128 241,255,255 124,146,198 134,131,127 121,123,123 123,125,125 215,169,122 253,255,255 253,255,255 255,255,254 146,194,242 129,125,124 126,126,126 123,125,125 167,123,122 255,255,216 251,255,255 255,254,255 195,240,255 125,123,145 125,125,125 125,126,124 123,125,126 255,216,171 255,254,255 255,255,255 255,254,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 125,125,125 126,126,126 170,126,125 255,255,214 253,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,254,255 253,255,254 149,194,238 126,126,126 126,126,126 129,127,126 123,125,125 190,146,122 255,255,237 255,255,255 255,255,255 255,255,255 193,235,254 123,124,145 127,127,127 126,126,126 127,127,127 125,125,125 126,126,126 126,126,126 128,128,128 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 127,127,127 128,126,126 127,127,127 127,127,127 127,127,127 126,126,126 127,128,126 126,127,125 127,127,127 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 125,125,125 127,127,127 126,126,126 127,127,127 128,128,128 124,124,124 145,125,124 255,235,193 255,255,254 255,255,255 255,255,255 212,255,255 124,123,167 126,126,126 126,126,126 128,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 127,128,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 129,171,218 126,126,126 125,127,127 128,126,126 127,124,126 125,126,124 122,126,127 214,170,123 236,255,255 130,149,194 125,125,125 125,125,125 124,124,124 211,169,124 255,255,255 253,255,255 255,255,255 149,194,238 127,125,125 124,124,124 124,123,125 166,125,122 255,255,217 251,255,254 255,254,255 194,237,255 124,124,148 123,124,122 125,125,125 123,125,125 255,216,171 253,255,255 255,255,255 255,254,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,254,252 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 128,129,127 129,129,129 173,129,128 255,255,218 253,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 255,254,255 255,255,254 253,255,255 155,198,241 129,129,129 129,130,128 129,128,130 123,123,123 190,146,123 255,255,237 253,255,255 255,255,255 255,254,255 191,234,255 125,126,147 124,124,124 127,127,127 123,124,122 124,124,124 121,123,124 125,125,125 124,124,124 126,126,126 124,124,124 126,126,126 126,124,123 125,125,125 125,125,125 126,127,125 126,124,124 123,123,123 122,124,124 125,125,125 124,123,125 128,126,125 123,125,126 127,127,127 125,125,125 124,124,124 125,125,125 127,127,127 123,123,123 123,123,123 123,123,123 125,125,125 125,125,125 129,127,127 125,125,125 144,124,123 255,234,192 253,255,254 255,254,255 255,255,254 213,255,254 124,123,167 128,128,128 128,128,128 127,127,127 193,149,126 255,255,240 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 237,255,255 127,150,195 129,127,127 128,128,128 128,128,128 149,128,127 255,238,196 255,255,255 255,254,255 253,255,254 255,254,255 253,255,255 255,255,255 128,172,219 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 253,255,254 255,255,255 255,255,255 253,255,254 131,173,218 128,128,128 128,130,130 128,129,127 121,124,122 124,126,126 127,125,124 214,172,129 239,255,255 125,147,195 128,126,125 128,126,126 128,128,128 216,171,127 255,255,255 253,255,255 255,255,255 149,194,238 128,128,128 129,129,129 128,128,128 171,127,126 255,255,214 253,255,254 255,254,255 194,237,255 128,129,150 129,129,129 123,126,124 126,125,127 255,217,169 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,254,252 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 126,125,127 126,127,125 127,125,125 124,127,125 124,123,125 126,128,128 125,124,126 126,126,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 126,126,126 125,126,124 127,126,128 127,125,124 123,125,126 125,126,124 126,125,127 128,126,126 126,126,126 191,145,121 255,255,237 255,255,254 255,254,255 255,255,255 255,255,255 255,253,253 255,255,255 253,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 253,255,255 255,255,254 255,254,255 196,237,255 130,128,150 129,129,129 129,129,129 127,129,129 150,129,127 255,238,193 255,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,254 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,254,254 255,255,255 255,255,255 255,255,254 255,254,255 214,255,255 125,123,169 128,128,128 128,128,128 127,127,127 193,149,126 255,255,240 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 237,255,255 127,150,195 129,127,127 128,128,128 128,128,128 149,128,127 255,238,196 255,255,255 255,254,255 253,255,254 255,254,255 253,255,255 255,255,255 128,172,219 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 151,192,237 123,124,122 127,126,128 127,125,124 124,125,129 125,125,125 125,125,125 126,126,126 129,127,127 128,126,125 120,123,127 214,170,123 236,255,255 131,150,195 126,127,125 128,128,128 128,128,128 216,171,127 255,255,255 253,255,255 255,255,255 149,194,238 128,128,128 129,129,129 128,128,128 171,127,126 255,255,214 253,255,254 255,254,255 194,237,255 128,129,150 129,129,129 128,127,129 121,126,124 255,215,170 253,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 126,126,126 124,126,126 127,125,125 126,127,125 126,125,127 126,126,126 127,127,127 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,126,126 126,127,125 126,126,126 126,126,126 127,126,128 126,127,125 125,125,125 190,146,122 255,255,238 253,255,254 255,254,255 255,255,255 255,254,255 255,255,255 255,254,255 253,255,254 255,255,255 255,255,255 255,255,255 253,255,254 255,255,255 255,255,255 255,255,255 252,255,253 255,255,255 255,255,254 255,254,255 195,237,255 126,127,148 125,125,125 126,125,127 125,127,127 148,127,126 255,237,192 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 252,255,253 255,255,255 255,255,255 255,255,255 255,254,255 212,255,255 125,123,169 126,126,126 126,126,126 128,126,126 127,127,127 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 128,128,128 127,127,127 127,128,126 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 127,127,127 126,126,126 126,126,126 127,127,127 126,126,126 127,127,127 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 149,194,237 125,126,124 127,126,128 124,125,121 128,127,129 126,127,125 128,127,129 128,129,127 123,123,123 124,126,126 126,126,126 214,172,125 239,255,255 124,147,197 130,128,127 123,123,123 124,124,124 211,169,124 255,255,255 253,255,255 255,255,255 149,194,238 127,125,125 124,124,124 124,123,125 166,125,122 255,255,217 251,255,254 255,254,255 194,237,255 124,124,148 123,124,122 124,124,124 123,125,125 255,215,170 255,255,255 255,255,255 255,254,255 255,255,255 254,255,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 126,125,127 125,127,127 127,125,125 128,129,127 125,124,126 127,127,127 126,126,126 125,124,126 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 124,124,124 128,126,126 127,127,127 129,127,126 124,126,127 127,125,125 125,127,127 127,127,127 125,124,126 189,145,121 255,255,236 253,255,254 255,254,255 255,255,255 255,255,255 255,254,253 255,255,255 190,234,251 124,125,146 123,125,125 128,125,127 125,124,126 169,125,124 255,255,212 255,255,255 255,255,254 253,255,255 255,255,254 255,254,255 194,236,255 128,126,148 125,125,125 125,125,125 126,126,126 148,127,126 255,236,191 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 209,254,251 126,124,170 124,125,121 126,125,127 126,123,125 147,126,125 255,234,192 255,255,255 252,254,254 255,255,255 255,255,255 255,255,255 254,253,255 212,255,255 124,122,168 128,128,128 128,128,128 126,128,128 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 127,127,127 127,126,128 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,127,127 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 149,191,236 126,127,125 127,126,128 128,127,123 124,125,129 128,126,125 128,128,128 128,128,128 127,126,128 129,127,126 255,217,174 255,255,254 234,255,255 133,149,195 125,124,126 128,128,128 123,125,125 215,169,122 253,255,255 253,255,255 255,255,254 146,194,242 129,125,124 126,126,126 123,125,125 167,123,122 255,255,216 251,255,255 255,254,255 195,240,255 125,123,145 125,125,125 126,126,126 121,125,126 255,216,169 253,255,255 255,254,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,255,253 255,255,255 255,255,254 255,254,255 195,238,255 127,125,147 125,125,125 128,128,128 128,127,129 128,128,128 128,128,128 128,128,128 126,126,126 127,128,126 126,126,126 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 127,127,127 126,126,126 126,126,126 129,127,127 126,128,128 128,128,128 128,128,128 128,128,128 128,128,128 123,125,125 190,146,122 255,255,237 253,255,254 255,254,255 255,255,255 255,254,255 255,254,254 255,255,255 191,234,253 125,126,147 122,124,124 127,124,126 125,124,126 170,126,125 255,255,212 255,255,255 254,254,254 255,255,255 255,255,254 255,254,255 194,236,255 127,125,147 125,125,125 125,125,125 126,127,125 147,126,125 255,237,192 255,254,255 255,255,255 253,255,255 255,255,255 255,255,255 211,255,253 127,124,173 124,125,123 125,124,126 126,124,124 147,126,125 254,235,190 255,255,255 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 212,255,255 125,123,169 125,127,127 126,126,126 126,126,126 125,125,125 126,125,127 127,125,125 125,125,125 124,123,125 126,126,126 125,125,125 126,126,126 125,125,125 125,125,125 126,126,126 126,126,126 128,129,127 123,123,123 124,124,124 124,124,124 125,125,125 126,126,126 124,124,124 124,124,124 124,124,124 127,127,127 126,126,126 126,126,126 145,125,124 255,238,193 255,254,255 255,255,254 255,255,255 172,215,255 124,127,125 130,127,129 126,127,125 127,126,130 127,127,127 128,128,128 126,128,128 191,147,124 255,255,237 128,173,216 124,124,124 134,130,129 121,124,128 132,128,127 124,123,125 123,123,123 126,124,124 125,127,127 127,127,127 128,128,128 125,127,128 126,124,123 123,123,123 123,123,123 123,123,123 128,128,128 128,128,128 128,128,128 128,128,128 126,124,124 123,123,123 125,125,125 123,125,126 127,127,127 123,125,125 255,214,170 253,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,253,253 254,252,252 253,255,255 254,255,253 255,254,255 194,235,255 127,128,149 128,126,126 123,123,123 123,123,123 126,127,125 126,126,126 126,126,126 124,124,124 124,125,123 123,123,123 122,122,122 124,124,124 121,121,121 125,125,125 125,125,125 124,124,124 124,124,124 124,125,123 123,123,123 123,124,122 125,125,125 126,126,126 126,125,127 123,125,125 127,125,125 125,123,123 125,125,125 191,147,124 255,255,237 253,255,254 255,254,255 255,254,255 255,253,253 252,252,252 255,255,255 192,238,255 126,124,146 120,125,123 126,123,125 127,127,127 174,128,127 255,255,217 253,253,253 251,253,253 255,255,255 255,255,255 255,254,255 194,237,255 126,124,146 123,123,123 124,124,124 126,127,125 146,125,124 255,237,192 255,255,255 255,255,255 255,255,255 253,253,253 255,255,255 213,255,255 127,123,172 123,124,120 124,123,127 127,125,125 147,127,126 255,238,196 253,255,255 253,255,255 255,255,255 253,255,255 255,254,253 255,255,255 214,255,255 125,124,168 126,126,126 124,126,127 125,123,122 124,124,124 125,125,125 126,126,126 127,128,126 129,129,129 128,128,128 127,127,127 127,127,127 126,127,125 122,124,125 125,125,125 126,126,126 125,125,125 123,123,123 122,122,122 123,123,123 123,123,123 122,122,122 123,123,123 119,121,121 122,122,122 125,123,123 122,124,124 126,124,123 145,125,124 255,236,194 254,253,255 255,255,254 255,255,255 170,212,255 123,124,122 126,125,127 123,126,124 127,126,130 124,126,126 127,127,127 125,125,125 191,147,124 253,255,234 125,170,214 124,127,125 127,126,128 124,124,124 126,124,124 124,124,124 125,126,124 124,123,125 126,126,126 124,126,126 125,125,125 123,125,126 129,127,127 128,128,128 127,127,127 126,126,126 125,125,125 126,127,125 126,126,126 126,125,127 124,125,123 123,122,124 124,124,124 124,124,124 125,126,124 121,123,123 255,215,171 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,254,252 255,255,255 255,255,254 251,254,255 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,254,255 255,255,254 255,255,255 253,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,254 255,255,255 255,255,255 255,255,255 255,255,254 253,255,255 253,255,255 255,255,255 254,255,253 253,255,255 255,255,255 255,255,255 251,255,255 255,255,254 253,255,255 255,255,255 255,255,254 196,240,255 126,125,145 122,125,123 126,123,125 127,127,127 173,127,126 255,255,217 254,255,253 254,254,254 253,255,255 253,255,255 255,255,255 194,237,255 127,125,147 125,125,125 123,126,124 128,129,127 147,126,125 255,236,191 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 215,255,255 127,125,171 124,125,123 125,124,128 128,126,126 148,127,126 255,239,194 252,254,254 255,255,255 253,255,254 255,255,255 253,255,255 254,254,254 253,253,253 255,255,255 255,255,254 255,255,255 195,238,255 128,129,150 128,128,128 220,172,130 255,255,255 255,255,255 253,255,255 255,255,255 195,236,255 123,125,149 128,125,127 128,128,128 128,125,127 173,129,130 255,255,215 253,255,254 253,255,255 254,255,253 255,254,255 255,255,255 255,255,255 127,172,215 123,123,123 125,125,125 124,124,124 146,125,124 255,235,190 255,255,255 253,251,251 254,254,254 254,255,253 255,255,255 255,255,255 255,255,254 126,170,217 128,126,125 125,127,128 129,127,127 192,148,124 255,255,238 127,170,213 124,126,127 128,126,126 126,125,127 127,125,125 128,128,128 125,127,127 131,129,129 125,128,126 128,126,126 126,128,128 131,129,128 125,124,126 129,129,129 129,129,129 127,128,126 125,127,127 127,127,127 127,128,126 127,127,127 126,128,128 125,127,127 126,126,126 128,129,127 125,125,125 123,126,124 255,214,171 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 252,253,251 255,254,255 254,255,253 255,254,255 172,216,255 145,124,123 255,238,193 255,254,255 255,255,254 253,254,255 255,255,252 251,254,255 255,255,254 253,255,255 255,255,254 255,255,255 255,252,253 253,255,255 254,255,253 253,255,255 255,255,254 252,254,254 255,255,255 255,255,255 251,255,255 255,255,252 250,255,255 255,254,255 251,255,255 255,254,255 192,235,254 125,125,149 255,217,169 255,253,255 253,255,255 255,252,254 255,255,255 255,254,254 254,254,254 255,255,255 194,237,255 126,124,146 122,125,123 128,125,127 129,127,127 172,128,127 255,255,215 255,255,255 253,255,254 253,255,255 255,255,254 255,254,255 196,238,255 128,129,150 128,126,126 126,126,126 126,126,126 150,129,128 255,237,192 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 213,255,255 130,128,174 125,126,124 126,125,127 126,126,126 150,129,128 255,239,194 255,254,255 252,254,254 255,254,255 252,254,254 255,254,255 254,254,254 255,255,255 255,255,255 237,255,255 120,144,190 126,126,126 121,119,118 122,123,127 126,122,121 122,124,125 172,128,127 255,255,214 255,255,254 126,171,214 126,126,126 129,130,128 125,124,126 127,129,129 217,172,128 255,255,255 255,254,255 255,255,255 253,254,255 255,255,254 253,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 253,255,255 255,255,255 254,255,253 255,254,255 255,255,252 123,169,216 127,125,125 124,126,126 128,126,126 191,144,122 252,255,233 125,170,214 122,124,124 127,127,127 123,122,124 127,125,125 123,125,125 130,128,127 125,124,126 129,127,126 126,128,128 124,124,124 124,126,127 129,127,126 124,124,124 124,124,124 123,125,126 125,127,127 128,126,125 124,126,127 125,125,125 127,128,126 125,127,128 125,125,125 124,125,123 126,126,126 123,124,122 255,214,171 254,253,255 253,254,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,253,253 255,255,255 253,255,255 255,255,255 235,255,255 129,149,196 126,126,126 129,127,127 125,126,124 235,197,155 255,255,252 251,255,255 255,255,254 251,254,255 155,197,240 128,127,129 234,193,148 255,255,254 255,255,255 255,255,254 255,254,255 255,254,255 237,255,255 130,151,196 169,128,126 255,255,213 250,255,255 255,255,252 253,255,255 153,193,235 125,129,130 128,126,126 123,125,125 194,148,124 255,255,236 255,255,254 255,255,255 253,255,255 253,253,253 255,255,255 253,255,254 194,240,255 124,125,146 123,126,124 127,123,128 127,127,127 172,127,124 255,255,218 253,255,254 255,255,255 254,254,254 253,255,254 255,255,255 192,237,255 125,126,146 125,125,125 123,126,124 127,127,127 147,126,124 255,236,191 255,255,255 255,254,255 255,255,255 255,255,255 255,255,254 213,255,255 127,124,173 124,125,121 125,124,128 129,127,126 147,126,125 255,238,193 253,255,254 255,254,255 255,254,253 255,255,255 253,255,254 255,255,255 255,255,255 255,255,255 255,255,254 214,255,255 127,126,170 123,128,127 134,131,127 123,123,129 133,131,130 126,125,127 126,127,125 125,127,127 128,128,128 124,126,126 129,126,128 129,127,127 125,124,126 255,216,173 255,255,255 255,255,255 253,255,255 255,255,254 253,255,255 255,255,255 253,255,255 255,255,255 253,255,254 253,255,255 255,255,254 255,255,255 255,255,255 255,254,255 255,255,255 255,255,254 253,255,254 255,255,255 255,255,255 255,255,252 128,170,215 127,127,127 128,127,129 126,128,128 193,149,125 255,255,238 255,255,255 253,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 191,234,253 129,131,155 126,124,124 125,127,128 129,129,129 129,129,129 128,128,128 128,125,121 254,216,174 255,255,254 251,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 251,253,253 255,255,254 252,254,254 175,215,255 125,124,126 127,128,126 126,126,126 125,124,126 146,124,119 255,236,195 194,234,252 126,129,157 130,125,122 122,125,129 127,125,124 195,148,126 247,252,231 255,255,254 250,254,255 132,174,217 126,128,129 127,125,124 122,124,124 127,124,126 234,198,152 255,254,251 250,255,255 196,237,255 127,127,151 126,123,125 126,126,126 127,127,127 125,123,122 237,196,151 255,255,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 194,238,255 128,125,150 123,126,124 130,125,127 129,127,127 174,125,127 255,255,216 255,254,255 255,255,254 255,254,255 255,255,255 255,254,255 196,239,255 128,128,152 129,129,129 130,127,129 126,129,127 151,126,130 255,240,193 255,255,255 255,254,255 253,255,254 255,255,255 255,254,255 212,255,255 130,126,175 124,127,125 127,126,130 127,127,127 149,128,127 255,239,196 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,254 253,255,255 127,172,210 126,126,132 131,131,125 124,123,127 127,127,127 127,126,128 128,127,123 128,128,128 128,128,128 129,129,129 128,127,129 197,150,128 255,255,238 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,254 253,255,255 255,255,254 255,254,255 255,254,255 253,255,255 255,255,255 255,255,254 128,170,217 130,128,128 128,129,127 128,128,128 195,148,126 255,255,235 255,254,255 251,255,255 255,254,255 253,255,255 255,255,255 253,255,255 255,255,255 253,255,254 196,235,255 124,129,150 128,123,122 124,128,129 127,127,127 125,125,125 129,127,127 126,126,126 124,127,131 126,125,121 231,190,151 255,255,255 253,255,255 255,255,255 255,254,255 253,255,254 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 231,255,255 129,147,194 125,127,128 125,123,123 127,126,128 125,123,123 233,191,148 255,255,255 251,255,255 129,170,215 121,122,126 128,126,125 122,124,124 122,121,123 255,214,169 255,255,255 253,255,255 193,234,255 125,125,149 126,124,124 125,125,125 124,124,124 166,123,120 255,255,217 255,255,252 255,254,255 171,215,255 126,124,124 123,123,123 124,126,127 127,125,124 169,125,126 255,255,212 255,254,255 255,254,255 253,255,255 255,255,255 255,255,255 193,239,255 128,124,149 120,125,123 127,124,126 126,125,127 127,127,127 126,128,128 124,123,125 125,126,124 126,124,124 125,125,125 126,126,126 124,126,126 125,125,125 124,124,124 125,124,126 124,126,126 125,125,125 125,125,125 125,124,126 126,126,126 125,125,125 124,124,124 129,127,127 127,128,126 127,124,126 121,126,124 127,124,126 128,129,127 149,125,127 255,239,196 254,255,253 255,254,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 254,254,254 255,255,255 253,255,255 255,255,254 251,255,255 196,236,255 124,124,148 129,130,128 129,129,129 128,126,126 125,127,127 123,125,126 128,126,126 123,125,126 128,126,125 124,126,126 128,128,128 126,125,127 126,127,123 126,128,129 125,126,122 217,169,127 255,254,255 254,254,254 255,255,254 255,254,255 255,255,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,254 255,254,255 255,255,254 125,169,216 125,126,124 123,125,126 126,127,125 193,146,125 255,255,235 255,254,255 251,255,254 255,254,255 255,255,255 255,255,255 255,255,255 217,255,255 127,126,168 128,127,129 122,124,124 128,130,131 125,125,125 128,127,129 128,127,129 130,128,128 127,130,128 129,124,125 124,129,128 132,127,128 151,127,127 255,240,195 255,254,255 255,255,255 255,255,255 255,255,255 251,255,255 255,255,254 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,253,253 255,255,255 168,211,254 126,128,128 129,124,125 126,128,128 128,126,126 168,124,123 254,255,211 255,255,255 255,255,254 173,215,255 129,125,124 124,126,126 125,123,122 124,124,124 211,169,124 253,255,255 255,255,255 255,255,254 125,169,216 127,126,122 123,123,123 124,123,125 122,124,124 237,193,146 253,255,255 255,254,255 237,255,255 126,146,193 124,124,124 125,125,125 125,125,125 127,127,127 236,195,150 255,255,255 253,255,255 255,255,254 254,253,255 255,255,255 193,239,255 127,125,147 122,124,124 130,128,128 127,127,127 126,126,126 128,128,128 127,127,127 128,128,128 128,128,128 127,127,127 128,128,128 127,129,129 128,126,126 128,128,128 128,128,128 127,129,129 127,127,127 128,128,128 127,127,127 127,127,127 127,127,127 127,127,127 128,126,126 127,130,128 128,125,127 127,127,127 126,125,129 128,128,128 151,127,129 255,238,195 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,253,255 254,255,251 146,195,239 126,124,123 128,127,129 129,127,127 125,127,128 125,124,126 126,128,128 128,126,125 128,128,128 125,125,125 128,128,128 123,125,125 127,127,127 128,126,126 127,127,127 123,125,126 126,124,123 122,124,124 125,126,124 122,124,124 128,126,125 123,125,126 123,123,123 122,122,122 123,123,123 119,121,121 126,124,124 125,125,125 144,122,124 255,234,189 254,254,254 253,255,254 255,254,255 238,255,255 125,148,196 131,127,126 126,128,128 129,127,127 192,148,125 253,255,235 253,255,255 255,255,255 255,254,255 194,235,255 124,125,146 127,127,127 127,127,127 123,126,124 132,127,129 123,126,124 130,125,126 126,129,127 125,127,128 255,217,170 152,194,239 125,126,124 126,127,131 124,125,123 123,125,126 124,126,127 125,125,125 127,126,128 172,125,127 255,255,212 255,254,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 214,255,255 124,126,167 129,127,127 126,128,128 124,124,124 126,126,126 235,194,149 255,255,255 253,255,255 255,255,255 217,255,255 130,128,174 126,125,127 129,127,126 126,124,124 146,126,125 255,238,193 253,255,255 253,255,255 195,235,254 127,128,149 125,125,125 124,124,124 125,126,122 171,129,130 255,255,214 255,254,255 255,254,255 172,215,254 125,125,125 125,125,125 126,127,125 128,126,126 169,128,126 255,255,215 255,255,255 253,255,255 255,255,255 255,255,255 195,239,255 128,126,148 121,124,122 128,125,127 126,126,126 126,126,126 128,128,128 124,124,124 124,124,124 125,125,125 126,126,126 129,127,126 126,128,128 126,124,124 126,126,126 126,126,126 128,128,128 125,125,125 129,127,127 126,126,126 126,126,126 123,125,125 123,123,123 128,126,126 126,129,127 126,123,125 122,125,123 127,124,126 128,129,127 151,127,129 255,240,197 255,255,255 254,254,254 255,255,255 165,211,252 127,125,125 125,123,123 123,125,126 124,124,124 129,127,126 125,127,127 127,125,124 122,126,127 125,125,125 125,125,125 127,128,126 128,128,128 126,126,126 128,128,128 127,126,128 124,126,126 125,125,125 126,128,128 127,127,127 129,129,129 125,125,125 125,125,125 126,126,126 125,125,125 125,125,125 124,126,126 125,125,125 125,125,125 125,125,125 123,126,124 124,124,124 123,125,125 127,125,125 126,126,126 235,192,149 255,255,255 192,234,253 122,126,145 125,124,126 124,127,125 126,125,127 127,126,128 127,127,127 125,126,124 190,143,121 234,255,235 125,145,193 121,126,124 128,124,129 123,123,123 123,123,123 120,122,122 126,126,126 122,125,123 125,125,125 122,124,124 127,126,128 125,125,125 255,216,171 255,255,255 253,255,255 148,193,236 126,126,126 124,124,124 127,127,127 127,125,125 126,126,126 124,123,125 125,125,125 124,124,124 123,123,123 144,123,125 255,235,193 255,255,255 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 147,194,238 124,124,124 124,125,123 123,124,128 129,127,126 171,124,126 255,255,212 255,255,255 253,255,255 255,255,254 255,254,255 125,167,212 125,125,125 124,124,124 124,125,123 124,125,123 234,193,148 252,255,253 255,254,255 236,255,255 127,148,193 126,126,126 124,124,124 122,124,124 124,125,123 234,193,148 255,255,255 255,254,255 236,255,255 127,148,193 125,125,125 124,124,124 126,125,127 124,125,123 237,195,150 255,254,255 255,255,255 255,255,255 255,255,255 191,234,253 126,127,148 121,123,123 128,125,127 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 127,127,127 125,128,126 127,124,126 122,127,126 126,123,125 129,127,127 150,129,128 255,239,196 255,255,255 254,254,254 255,255,254 255,255,255 151,193,240 127,125,124 125,125,125 124,124,124 125,125,125 125,125,125 127,127,127 128,126,126 125,127,127 125,125,125 125,125,125 124,124,124 124,124,124 124,124,124 125,126,124 125,125,125 124,123,125 124,124,124 124,123,125 125,123,123 125,125,125 125,125,125 125,125,125 125,125,125 125,125,125 127,125,125 125,125,125 125,125,125 124,123,125 122,125,123 124,124,124 125,125,125 127,125,125 170,126,127 254,255,211 255,255,255 216,255,255 127,128,172 128,126,126 121,125,126 127,125,125 126,126,126 127,126,128 128,128,128 193,146,124 255,255,235 192,234,255 123,127,146 127,124,126 123,125,125 125,125,125 126,126,126 124,124,124 123,123,123 125,126,124 124,124,124 170,124,123 255,255,215 255,255,255 255,255,255 255,255,254 253,255,255 147,192,236 125,125,125 128,123,124 125,124,126 126,124,124 124,124,124 125,125,125 123,126,124 127,127,127 214,169,125 255,254,255 255,254,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 192,237,255 125,123,145 125,125,125 127,127,127 125,122,124 123,127,128 255,216,171 255,255,255 255,254,254 255,255,255 255,255,254 255,254,255 194,237,255 127,125,147 125,125,125 122,124,124 123,125,125 193,146,124 255,255,237 255,255,255 255,254,254 170,212,255 123,123,123 122,124,124 124,125,123 124,126,127 170,127,124 255,255,215 253,255,255 254,251,253 169,212,255 127,128,126 124,126,127 125,126,122 123,125,125 171,126,123 255,255,214 255,255,255 253,255,255 253,254,252 191,234,255 125,123,145 121,123,123 127,124,126 124,123,125 122,124,125 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 124,124,124 125,127,127 126,126,126 125,125,125 123,125,125 123,123,123 126,127,125 149,125,125 255,237,194 254,254,254 255,255,254 255,255,255 255,255,254 236,255,255 127,147,195 122,125,123 127,125,125 128,128,128 126,125,127 124,126,126 124,124,124 124,124,124 127,127,127 127,127,127 129,129,129 145,125,124 255,236,191 253,254,255 255,255,255 255,255,254 148,192,239 128,126,125 127,127,127 124,125,123 128,126,126 124,127,125 126,127,125 123,126,124 125,124,126 125,125,125 125,126,124 126,128,128 127,126,128 125,126,124 126,126,126 125,125,125 255,215,172 253,255,255 255,255,255 235,255,255 126,149,195 126,127,125 123,125,125 128,126,126 127,127,127 126,126,126 127,127,127 192,148,125 254,255,234 255,255,255 147,194,238 129,127,126 129,126,128 126,127,125 125,125,125 124,124,124 125,127,127 123,125,126 237,196,151 255,254,255 255,254,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,252 192,238,255 125,126,152 129,127,127 124,126,126 127,125,125 124,124,124 126,126,126 168,124,123 255,255,214 255,255,255 255,255,255 253,255,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,254,253 215,255,255 123,122,166 122,124,125 128,128,128 194,148,124 255,255,237 254,254,254 251,253,253 255,255,255 252,254,254 255,255,255 235,254,255 126,146,193 124,124,124 255,212,169 253,255,255 255,255,254 255,255,254 255,254,255 253,255,255 213,255,255 126,125,169 193,149,126 255,255,236 255,255,255 254,254,254 255,255,254 255,255,255 255,255,255 213,255,254 126,124,170 123,127,122 124,123,125 123,126,124 215,190,146 255,233,235 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 214,255,255 128,126,172 124,125,123 128,127,129 128,125,127 148,128,127 255,239,196 255,255,255 255,253,253 253,255,254 255,254,254 253,255,255 216,255,255 126,124,170 124,125,123 125,125,125 124,127,125 127,125,125 126,129,127 127,127,127 171,124,126 255,255,213 254,254,254 254,254,254 253,255,255 255,255,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 129,171,216 126,126,126 127,127,127 127,126,128 125,125,125 125,126,124 124,126,127 124,122,121 195,146,124 255,255,235 255,255,255 255,255,255 255,255,255 149,194,237 128,126,126 123,123,123 126,126,126 126,125,127 127,128,126 125,127,127 255,213,168 253,255,255 255,255,255 234,255,255 128,148,195 124,123,125 126,126,126 128,126,125 124,126,127 255,214,167 255,254,255 254,255,253 255,254,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,254 253,255,255 255,255,252 255,254,255 170,213,255 126,124,124 127,127,127 126,124,124 123,125,125 255,216,171 255,255,254 254,253,255 255,255,254 253,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 249,251,252 253,255,254 212,255,255 150,125,169 255,238,195 253,255,255 252,254,254 255,255,255 255,255,255 255,254,255 255,255,254 253,255,255 255,255,254 255,255,255 254,255,253 255,254,255 255,255,255 253,255,255 255,255,255 255,255,255 255,254,254 255,255,255 252,254,254 255,255,255 253,255,255 255,255,255 253,255,255 255,255,254 255,255,255 255,255,255 151,196,240 170,126,125 255,255,212 251,255,254 255,254,255 255,255,255 254,252,252 251,255,255 255,255,255 253,255,255 255,255,254 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 211,253,252 125,125,171 125,123,122 126,125,127 124,124,124 147,126,125 254,235,190 253,254,252 253,255,254 255,253,255 253,255,255 255,255,255 255,254,255 173,215,255 127,125,125 128,129,127 195,148,126 255,255,237 255,255,254 255,253,255 255,255,255 255,255,255 253,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,254 255,254,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,252 167,211,252 125,125,125 125,123,122 127,127,127 126,124,123 147,125,127 255,236,191 253,255,255 255,254,254 251,254,252 253,255,255 173,215,255 127,126,128 216,169,125 253,255,255 255,255,254 255,254,255 255,255,255 253,255,255 255,255,255 255,255,254 253,255,255 255,255,255 253,255,254 255,255,255 255,255,254 253,255,255 253,255,255 255,255,254 255,254,255 214,255,254 125,126,170 195,148,126 254,255,236 253,255,255 255,254,255 253,255,255 255,255,254 252,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 252,254,255 255,255,254 254,252,251 253,255,255 255,254,255 255,255,254 255,255,255 255,254,255 254,254,254 255,255,255 255,255,255 255,255,255 253,255,255 255,255,254 255,254,255 255,254,255 253,255,255 255,255,254 255,255,255 255,254,255 255,255,255 253,255,255 254,254,254 255,254,255 255,255,254 255,255,255 255,254,254 255,255,254 255,254,255 255,255,254 253,253,253 255,254,255 255,255,255 255,254,255 255,255,255 255,255,255 253,252,254 253,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,254 255,255,255 253,255,254 255,254,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,254 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 253,255,255 255,255,255 255,254,255 255,255,255 255,254,255 255,255,255 255,255,254 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,254,255 253,255,254 253,255,255 255,254,254 253,255,255 255,254,253 253,255,255 255,254,255 255,254,255 253,255,254 255,255,255 253,255,255 255,255,255 253,255,255 255,255,255 255,255,255 255,254,255 253,255,255 255,254,255 254,254,254 253,255,255 253,253,253 255,255,255 255,255,255 255,254,255 255,255,255 255,255,255 255,254,253 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 253,255,254 255,254,255 253,255,254 255,252,254 254,254,254 255,255,255 255,255,255 255,254,255 255,255,254 255,254,255 255,255,252 255,254,255 255,255,254 251,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 253,255,255 255,255,254 255,254,255 255,255,255 255,255,255 255,255,255 255,255,254 254,253,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,254,255 255,254,255 253,255,255 255,255,255 253,255,254 255,254,254 255,255,255 255,254,254 255,255,255 255,255,255 253,255,255 255,255,255 251,253,254 255,255,254 255,255,255 255,254,254 255,255,255 255,254,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 253,255,254 255,254,255 255,255,254 255,255,255 255,255,254 254,253,255 253,255,255 253,253,253 255,255,254 255,253,255 253,255,255 255,253,255 253,255,255 255,253,255 255,255,255 255,255,255 253,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,254,255 254,254,254 252,254,254 255,254,255 253,255,254 255,255,255 253,255,255 255,255,255 254,254,254 255,254,255 255,255,254 253,255,255 255,255,254 253,254,255 255,255,254 253,255,255 255,255,255 255,255,255 253,255,255 255,255,255 253,255,255 255,253,254 255,255,255 255,255,255 255,254,255 255,255,254 252,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,254,255 255,255,254 254,254,254 255,255,254 255,254,255 255,255,254 255,255,255 255,255,255 255,254,255 255,255,254 255,255,255 255,255,255 254,254,254 254,254,254 252,254,255 255,255,255 255,255,255 253,255,255 255,255,255 254,254,254 255,255,255 253,255,255 255,255,255 255,255,255 255,255,255 253,255,255 255,255,254 254,253,255 255,255,254 253,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 253,255,255 254,254,254 255,255,255 254,254,254 253,255,255 255,254,254 255,255,255 255,254,255 255,255,255 254,254,254 255,255,254 255,255,255 255,255,255 253,253,253 255,255,255 255,254,255 254,255,253 253,253,253 255,255,255 254,253,255 255,255,255 253,255,255 254,255,253 255,255,254 254,254,254 255,255,255 253,252,254 255,255,254 254,253,255 255,255,254 255,255,255 255,255,255 255,255,255 255,254,255 255,255,254 253,252,254 255,255,255 255,254,255 255,255,255 255,254,254 253,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,254 255,255,255 254,254,254 255,254,255 252,254,254 255,255,255 255,255,255 255,255,255 253,252,254 255,255,254 254,254,254 255,255,255 255,254,255 255,255,255 254,254,254 255,255,255 255,254,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,254 254,254,254 255,255,255 253,253,253 251,253,254 255,254,253 254,253,255 253,253,253 255,255,255 252,254,254 255,254,255 252,255,253 255,255,255 255,255,255 255,255,255 254,254,254 255,255,254 255,255,255 255,255,255 253,255,255 255,255,255 252,254,255 255,255,254 253,255,255 255,255,255 253,255,254 253,255,255 255,255,254 255,255,255 254,254,254 255,255,255 255,255,254 255,255,255 252,252,252 255,255,255 255,255,254 253,255,255 255,254,253 252,254,255 255,255,255 255,255,255 255,255,255 254,253,255 253,255,255 255,253,252 253,255,255 254,254,254 255,255,255 254,254,254 255,255,255 252,254,254 255,254,255 255,255,255 255,253,253 255,255,255 255,254,254 254,254,254 255,254,255 255,255,255 255,254,255 253,255,254 254,253,255 253,255,255 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,252,254 254,254,254 255,255,255 253,253,253 255,255,255 253,253,253 255,255,255 254,253,255 255,255,255 254,253,255 255,255,255 253,253,253 255,255,255 252,254,255 255,255,255 253,255,255 255,255,255 255,255,255 254,254,254 252,254,255 255,254,254 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 251,253,254 254,255,253 252,254,255 255,255,254 255,254,255 254,254,254 255,255,255 254,254,254 255,255,254 254,253,255 255,255,254 253,255,255 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 252,254,254 255,255,255 254,253,255 255,255,254 253,255,255 255,255,254 255,254,255 255,255,255 255,255,254 254,254,254 255,255,255 255,255,255 252,254,254 252,254,254 254,254,254 255,253,253 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 251,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 253,253,253 254,254,254 253,253,253 255,255,255 255,254,255 254,254,254 253,253,253 254,253,255 255,255,254 255,255,254 255,255,255 254,254,254 255,255,255 253,255,255 255,253,253 253,255,255 255,254,253 255,255,254 255,255,255 254,254,254 255,255,255 255,255,255 253,255,254 255,255,255 255,255,255 254,253,255 254,254,254 254,254,254 254,254,254 255,255,255 255,253,252 255,255,255 255,255,255 255,254,255 255,254,255 255,255,255 254,254,254 255,255,255 254,254,254 253,255,255 255,255,254 255,255,255 255,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 +255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/a_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/a_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/a_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/a_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/a_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/a_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/a_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/a_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/a_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/a_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/a_original.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/gray/_bged.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_bged.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/gray/_bged.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_bged.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/gray/_binaried.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_binaried.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/gray/_binaried.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_binaried.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/gray/_greied.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_greied.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/gray/_greied.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_greied.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/gray/_noised.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_noised.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/gray/_noised.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_noised.txt diff --git a/ReCapcha/Test/bin/Debug/experiment/gray/_original.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_original.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/experiment/gray/_original.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/experiment/gray/_original.txt diff --git a/ReCapcha/Test/bin/Debug/img/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/1.jpg diff --git a/ReCapcha/Test/bin/Debug/img/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/2.jpg diff --git a/ReCapcha/Test/bin/Debug/img/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/3.jpg diff --git a/ReCapcha/Test/bin/Debug/img/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/4.jpg diff --git a/ReCapcha/Test/bin/Debug/img/bar.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/bar.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/bar.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/bar.jpg diff --git a/ReCapcha/Test/bin/Debug/img/beijing.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/beijing.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/beijing.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/beijing.jpg diff --git a/ReCapcha/Test/bin/Debug/img/big.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/big.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/big.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/big.jpg diff --git a/ReCapcha/Test/bin/Debug/img/binary.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/binary.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/binary.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/binary.jpg diff --git a/ReCapcha/Test/bin/Debug/img/gray.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/gray.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/gray.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/gray.jpg diff --git a/ReCapcha/Test/bin/Debug/img/logo.ico b/RECAPTCHA/RECAPTCHA/bin/Debug/img/logo.ico similarity index 100% rename from ReCapcha/Test/bin/Debug/img/logo.ico rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/logo.ico diff --git a/ReCapcha/Test/bin/Debug/img/noise.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/noise.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/noise.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/noise.jpg diff --git a/ReCapcha/Test/bin/Debug/img/null.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/img/null.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/img/null.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/img/null.jpg diff --git "a/ReCapcha/Test/bin/Debug/img/\347\201\260\345\272\246.jpg" "b/RECAPTCHA/RECAPTCHA/bin/Debug/img/\347\201\260\345\272\246.jpg" similarity index 100% rename from "ReCapcha/Test/bin/Debug/img/\347\201\260\345\272\246.jpg" rename to "RECAPTCHA/RECAPTCHA/bin/Debug/img/\347\201\260\345\272\246.jpg" diff --git a/ReCapcha/Test/bin/Debug/imgurl.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/imgurl.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/imgurl.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/imgurl.txt diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/0.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/1.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/10.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/100.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/100.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/100.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/100.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/101.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/101.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/101.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/101.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/102.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/102.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/102.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/102.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/103.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/103.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/103.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/103.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/104.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/104.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/104.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/104.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/105.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/105.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/105.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/105.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/106.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/106.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/106.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/106.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/107.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/107.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/107.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/107.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/108.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/108.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/108.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/108.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/109.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/109.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/109.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/109.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/11.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/110.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/110.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/110.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/110.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/111.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/111.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/111.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/111.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/112.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/112.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/112.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/112.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/113.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/113.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/113.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/113.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/114.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/114.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/114.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/114.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/115.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/115.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/115.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/115.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/116.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/116.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/116.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/116.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/117.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/117.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/117.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/117.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/118.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/118.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/118.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/118.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/119.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/119.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/119.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/119.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/12.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/120.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/120.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/120.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/120.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/121.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/121.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/121.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/121.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/122.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/122.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/122.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/122.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/123.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/123.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/123.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/123.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/124.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/124.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/124.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/124.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/125.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/125.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/125.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/125.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/126.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/126.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/126.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/126.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/127.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/127.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/127.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/127.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/128.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/128.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/128.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/128.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/129.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/129.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/129.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/129.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/13.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/130.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/130.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/130.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/130.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/131.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/131.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/131.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/131.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/132.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/132.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/132.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/132.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/133.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/133.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/133.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/133.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/134.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/134.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/134.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/134.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/135.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/135.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/135.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/135.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/136.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/136.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/136.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/136.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/137.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/137.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/137.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/137.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/138.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/138.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/138.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/138.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/139.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/139.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/139.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/139.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/14.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/140.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/140.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/140.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/140.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/141.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/141.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/141.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/141.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/142.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/142.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/142.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/142.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/143.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/143.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/143.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/143.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/144.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/144.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/144.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/144.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/145.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/145.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/145.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/145.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/146.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/146.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/146.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/146.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/147.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/147.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/147.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/147.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/148.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/148.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/148.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/148.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/149.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/149.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/149.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/149.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/15.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/150.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/150.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/150.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/150.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/151.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/151.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/151.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/151.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/152.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/152.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/152.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/152.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/153.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/153.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/153.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/153.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/154.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/154.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/154.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/154.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/155.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/155.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/155.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/155.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/156.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/156.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/156.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/156.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/157.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/157.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/157.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/157.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/158.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/158.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/158.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/158.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/159.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/159.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/159.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/159.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/16.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/160.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/160.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/160.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/160.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/161.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/161.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/161.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/161.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/162.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/162.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/162.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/162.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/163.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/163.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/163.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/163.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/164.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/164.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/164.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/164.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/165.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/165.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/165.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/165.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/166.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/166.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/166.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/166.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/167.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/167.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/167.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/167.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/168.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/168.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/168.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/168.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/169.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/169.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/169.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/169.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/17.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/170.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/170.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/170.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/170.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/171.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/171.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/171.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/171.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/172.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/172.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/172.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/172.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/173.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/173.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/173.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/173.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/174.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/174.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/174.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/174.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/175.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/175.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/175.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/175.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/176.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/176.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/176.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/176.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/177.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/177.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/177.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/177.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/178.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/178.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/178.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/178.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/179.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/179.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/179.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/179.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/18.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/180.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/180.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/180.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/180.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/181.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/181.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/181.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/181.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/182.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/182.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/182.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/182.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/183.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/183.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/183.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/183.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/184.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/184.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/184.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/184.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/185.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/185.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/185.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/185.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/186.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/186.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/186.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/186.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/187.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/187.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/187.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/187.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/188.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/188.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/188.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/188.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/189.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/189.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/189.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/189.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/19.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/190.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/190.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/190.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/190.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/191.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/191.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/191.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/191.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/192.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/192.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/192.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/192.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/193.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/193.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/193.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/193.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/194.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/194.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/194.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/194.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/195.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/195.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/195.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/195.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/196.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/196.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/196.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/196.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/197.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/197.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/197.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/197.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/198.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/198.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/198.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/198.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/199.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/199.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/199.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/199.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/2.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/20.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/21.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/22.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/23.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/24.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/25.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/26.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/27.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/28.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/29.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/3.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/30.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/31.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/32.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/33.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/34.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/35.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/36.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/37.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/38.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/39.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/4.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/40.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/41.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/42.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/43.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/44.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/45.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/46.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/47.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/48.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/49.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/5.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/50.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/50.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/50.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/50.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/51.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/51.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/51.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/51.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/52.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/52.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/52.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/52.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/53.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/53.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/53.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/53.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/54.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/54.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/54.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/54.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/55.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/55.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/55.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/55.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/56.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/56.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/56.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/56.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/57.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/57.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/57.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/57.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/58.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/58.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/58.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/58.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/59.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/59.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/59.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/59.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/6.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/60.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/60.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/60.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/60.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/61.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/61.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/61.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/61.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/62.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/62.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/62.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/62.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/63.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/63.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/63.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/63.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/64.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/64.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/64.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/64.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/65.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/65.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/65.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/65.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/66.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/66.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/66.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/66.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/67.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/67.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/67.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/67.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/68.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/68.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/68.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/68.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/69.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/69.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/69.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/69.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/7.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/70.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/70.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/70.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/70.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/71.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/71.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/71.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/71.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/72.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/72.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/72.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/72.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/73.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/73.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/73.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/73.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/74.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/74.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/74.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/74.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/75.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/75.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/75.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/75.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/76.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/76.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/76.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/76.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/77.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/77.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/77.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/77.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/78.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/78.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/78.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/78.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/79.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/79.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/79.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/79.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/8.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/80.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/80.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/80.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/80.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/81.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/81.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/81.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/81.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/82.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/82.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/82.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/82.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/83.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/83.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/83.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/83.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/84.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/84.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/84.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/84.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/85.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/85.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/85.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/85.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/86.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/86.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/86.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/86.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/87.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/87.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/87.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/87.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/88.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/88.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/88.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/88.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/89.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/89.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/89.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/89.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/9.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/90.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/90.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/90.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/90.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/91.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/91.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/91.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/91.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/92.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/92.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/92.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/92.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/93.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/93.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/93.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/93.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/94.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/94.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/94.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/94.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/95.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/95.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/95.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/95.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/96.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/96.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/96.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/96.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/97.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/97.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/97.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/97.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/98.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/98.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/98.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/98.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/99.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/99.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/99.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/99.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/newzimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/newzimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/noise_pics/newzimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/noise_pics/newzimo.txt diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/0.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/0.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/0.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/0.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/1.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/1.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/1.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/1.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/10.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/10.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/10.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/10.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/11.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/11.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/11.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/11.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/12.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/12.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/12.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/12.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/13.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/13.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/13.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/13.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/14.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/14.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/14.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/14.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/15.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/15.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/15.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/15.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/16.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/16.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/16.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/16.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/17.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/17.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/17.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/17.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/18.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/18.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/18.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/18.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/19.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/19.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/19.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/19.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/2.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/2.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/2.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/2.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/20.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/20.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/20.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/20.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/21.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/21.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/21.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/21.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/22.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/22.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/22.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/22.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/23.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/23.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/23.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/23.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/24.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/24.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/24.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/24.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/25.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/25.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/25.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/25.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/26.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/26.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/26.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/26.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/27.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/27.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/27.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/27.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/28.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/28.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/28.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/28.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/29.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/29.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/29.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/29.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/3.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/3.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/3.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/3.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/30.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/30.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/30.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/30.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/31.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/31.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/31.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/31.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/32.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/32.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/32.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/32.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/33.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/33.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/33.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/33.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/34.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/34.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/34.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/34.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/35.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/35.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/35.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/35.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/36.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/36.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/36.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/36.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/37.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/37.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/37.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/37.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/38.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/38.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/38.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/38.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/39.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/39.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/39.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/39.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/4.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/4.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/4.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/4.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/40.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/40.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/40.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/40.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/41.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/41.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/41.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/41.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/42.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/42.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/42.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/42.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/43.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/43.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/43.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/43.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/44.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/44.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/44.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/44.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/45.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/45.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/45.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/45.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/46.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/46.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/46.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/46.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/47.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/47.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/47.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/47.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/48.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/48.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/48.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/48.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/49.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/49.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/49.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/49.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/5.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/5.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/5.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/5.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/6.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/6.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/6.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/6.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/7.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/7.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/7.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/7.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/8.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/8.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/8.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/8.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/9.jpg b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/9.jpg similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/9.jpg rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/9.jpg diff --git a/ReCapcha/Test/bin/Debug/yanzhengma/sspu/zimo.txt b/RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/zimo.txt similarity index 100% rename from ReCapcha/Test/bin/Debug/yanzhengma/sspu/zimo.txt rename to RECAPTCHA/RECAPTCHA/bin/Debug/yanzhengma/sspu/zimo.txt diff --git a/ReCapcha/Test/logo.ico b/RECAPTCHA/RECAPTCHA/logo.ico similarity index 100% rename from ReCapcha/Test/logo.ico rename to RECAPTCHA/RECAPTCHA/logo.ico diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.CoreCompileInputs.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..db7ac26 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3c11a80ab1efe7fe76db2438c84b339ae6812a1c diff --git a/ReCapcha/Test/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt similarity index 67% rename from ReCapcha/Test/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt rename to RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt index 84ef413..685e110 100644 --- a/ReCapcha/Test/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt +++ b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.FileListAbsolute.txt @@ -28,3 +28,19 @@ E:\github\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Process4.resources E:\github\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Properties.Resources.resources E:\github\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.ZimoList.resources E:\github\ReCapcha\ReCapcha\Test\obj\Debug\AutoRecogize.csproj.GenerateResource.Cache +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\CaptchaRecogition.exe.config +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\CaptchaRecogition.exe +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\CaptchaRecogition.pdb +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\AutoRecogize.csprojAssemblyReference.cache +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\ReCapcha.Test4Captcha.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.gp_down.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Process1.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Process2.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Process3.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Process4.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.Properties.Resources.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.ZimoList.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\AutoRecogize.csproj.GenerateResource.cache +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\AutoRecogize.csproj.CoreCompileInputs.cache +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.exe +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.pdb diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.GenerateResource.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.GenerateResource.cache new file mode 100644 index 0000000..1674a5a Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csproj.GenerateResource.cache differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csprojAssemblyReference.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csprojAssemblyReference.cache new file mode 100644 index 0000000..37d9c00 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csprojAssemblyReference.cache differ diff --git a/ReCapcha/Test/obj/Debug/AutoRecogize.csprojResolveAssemblyReference.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csprojResolveAssemblyReference.cache similarity index 100% rename from ReCapcha/Test/obj/Debug/AutoRecogize.csprojResolveAssemblyReference.cache rename to RECAPTCHA/RECAPTCHA/obj/Debug/AutoRecogize.csprojResolveAssemblyReference.cache diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.Properties.Resources.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.Properties.Resources.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.Properties.Resources.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.Properties.Resources.resources diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.exe b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.exe similarity index 66% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.exe rename to RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.exe index 8652299..81f85db 100644 Binary files a/ReCapcha/Test/obj/Debug/CaptchaRecogition.exe and b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.exe differ diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.gp_down.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.gp_down.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.gp_down.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.gp_down.resources diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.pdb b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.pdb new file mode 100644 index 0000000..be39178 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/CaptchaRecogition.pdb differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..6b13f69 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..434d238 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.Process1.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process1.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.Process1.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process1.resources diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.Process2.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process2.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.Process2.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process2.resources diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.Process3.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process3.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.Process3.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process3.resources diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.Process4.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process4.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.Process4.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Process4.resources diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Properties.Resources.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Properties.Resources.resources new file mode 100644 index 0000000..a2efb9c Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Properties.Resources.resources differ diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.ZimoList.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Test4Captcha.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/CaptchaRecogition.ZimoList.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.Test4Captcha.resources diff --git a/ReCapcha/Test/obj/Debug/ReCapcha.Test4Captcha.resources b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.ZimoList.resources similarity index 100% rename from ReCapcha/Test/obj/Debug/ReCapcha.Test4Captcha.resources rename to RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.ZimoList.resources diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.CoreCompileInputs.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..830112c --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d412939b66669de0f1ba986157dcf6d3aeed29f0 diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.FileListAbsolute.txt b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c6677f5 --- /dev/null +++ b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.FileListAbsolute.txt @@ -0,0 +1,31 @@ +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\CaptchaRecogition.gp_down.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Properties.Resources.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.csproj.GenerateResource.cache +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.csproj.CoreCompileInputs.cache +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\RECAPTCHA.exe.config +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\RECAPTCHA.exe +D:\myapp\ReCapcha\ReCapcha\Test\bin\Debug\RECAPTCHA.pdb +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.exe +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.pdb +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Test4Captcha.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Process1.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Process2.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Process3.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.Process4.resources +D:\myapp\ReCapcha\ReCapcha\Test\obj\Debug\RECAPTCHA.ZimoList.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\bin\Debug\RECAPTCHA.exe.config +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\bin\Debug\RECAPTCHA.exe +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\bin\Debug\RECAPTCHA.pdb +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.csprojAssemblyReference.cache +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Test4Captcha.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\CaptchaRecogition.gp_down.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Process1.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Process2.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Process3.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Process4.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.Properties.Resources.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.ZimoList.resources +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.csproj.GenerateResource.cache +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.csproj.CoreCompileInputs.cache +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.exe +D:\myapp\ReCapcha\ReCapcha\RECAPTCHA\obj\Debug\RECAPTCHA.pdb diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.GenerateResource.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.GenerateResource.cache new file mode 100644 index 0000000..0d7dc37 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csproj.GenerateResource.cache differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csprojAssemblyReference.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csprojAssemblyReference.cache new file mode 100644 index 0000000..09f263a Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.csprojAssemblyReference.cache differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.exe b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.exe new file mode 100644 index 0000000..3c1e1cb Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.exe differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.pdb b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.pdb new file mode 100644 index 0000000..5693d9e Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/RECAPTCHA.pdb differ diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/RECAPTCHA/RECAPTCHA/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..4ab3148 Binary files /dev/null and b/RECAPTCHA/RECAPTCHA/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs similarity index 100% rename from ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs rename to RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs diff --git a/ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs similarity index 100% rename from ReCapcha/Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs rename to RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs diff --git a/RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/RECAPTCHA/RECAPTCHA/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/ReCapcha/Test/obj/Debug/Test.csproj.FileListAbsolute.txt b/RECAPTCHA/RECAPTCHA/obj/Debug/Test.csproj.FileListAbsolute.txt similarity index 100% rename from ReCapcha/Test/obj/Debug/Test.csproj.FileListAbsolute.txt rename to RECAPTCHA/RECAPTCHA/obj/Debug/Test.csproj.FileListAbsolute.txt diff --git a/ReCapcha/Test/obj/Debug/Test.csproj.GenerateResource.Cache b/RECAPTCHA/RECAPTCHA/obj/Debug/Test.csproj.GenerateResource.Cache similarity index 100% rename from ReCapcha/Test/obj/Debug/Test.csproj.GenerateResource.Cache rename to RECAPTCHA/RECAPTCHA/obj/Debug/Test.csproj.GenerateResource.Cache diff --git a/ReCapcha/Test/obj/Debug/Test.csprojResolveAssemblyReference.cache b/RECAPTCHA/RECAPTCHA/obj/Debug/Test.csprojResolveAssemblyReference.cache similarity index 100% rename from ReCapcha/Test/obj/Debug/Test.csprojResolveAssemblyReference.cache rename to RECAPTCHA/RECAPTCHA/obj/Debug/Test.csprojResolveAssemblyReference.cache diff --git a/ReCapcha/Test/ZimoList.Designer.cs "b/RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.Designer.cs" similarity index 99% rename from ReCapcha/Test/ZimoList.Designer.cs rename to "RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.Designer.cs" index 8d189c8..92a5703 100644 --- a/ReCapcha/Test/ZimoList.Designer.cs +++ "b/RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.Designer.cs" @@ -1,4 +1,4 @@ -namespace CaptchaRecogition +namespace RECAPTCHA { partial class ZimoList { diff --git a/ReCapcha/Test/ZimoList.cs "b/RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.cs" similarity index 95% rename from ReCapcha/Test/ZimoList.cs rename to "RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.cs" index f210561..1a83e42 100644 --- a/ReCapcha/Test/ZimoList.cs +++ "b/RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.cs" @@ -1,14 +1,9 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; using System.IO; using System.Linq; -using System.Text; using System.Windows.Forms; -namespace CaptchaRecogition +namespace RECAPTCHA { public partial class ZimoList : Form { diff --git a/ReCapcha/Test/ZimoList.resx "b/RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.resx" similarity index 100% rename from ReCapcha/Test/ZimoList.resx rename to "RECAPTCHA/RECAPTCHA/\345\255\227\346\250\241\345\244\204\347\220\206.resx" diff --git a/ReCapcha/ReCapcha.v12.suo b/ReCapcha/ReCapcha.v12.suo deleted file mode 100644 index 9bd9d0b..0000000 Binary files a/ReCapcha/ReCapcha.v12.suo and /dev/null differ diff --git a/ReCapcha/Test/Process1.cs b/ReCapcha/Test/Process1.cs deleted file mode 100644 index b5564e9..0000000 --- a/ReCapcha/Test/Process1.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Windows.Forms; - -namespace CaptchaRecogition -{ - public partial class Process1 : Form - { - public Process1() - { - InitializeComponent(); - } - - private string Original; - private string Grey; - public Process1(string original,string grey) - { - InitializeComponent(); - Original = original; - this.Grey = grey; - this.Text = "灰度处理前后对比"; - - } - - private void ProcessResults_Load(object sender, EventArgs e) - { - listBox_Original.Items.AddRange(Original.Split(new string[] { "\r\n" }, StringSplitOptions.None)); - listBox_Grey.Items.AddRange(Grey.Split(new string[] { "\r\n" },StringSplitOptions.None )); - } - } -} diff --git a/ReCapcha/Test/bin/Debug/CaptchaRecogition.pdb b/ReCapcha/Test/bin/Debug/CaptchaRecogition.pdb deleted file mode 100644 index 932dc85..0000000 Binary files a/ReCapcha/Test/bin/Debug/CaptchaRecogition.pdb and /dev/null differ diff --git a/ReCapcha/Test/bin/Debug/experiment/67_bged.txt b/ReCapcha/Test/bin/Debug/experiment/67_bged.txt deleted file mode 100644 index 48b94e5..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/67_bged.txt +++ /dev/null @@ -1,40 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 98,98,98 89,89,89 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 90,90,90 98,98,98 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 133,133,133 136,136,136 172,172,172 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 134,134,134 116,116,116 141,141,141 157,157,157 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 255,255,255 180,180,180 135,135,135 179,179,179 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 165,165,165 119,119,119 96,96,96 111,111,111 255,255,255 255,255,255 157,157,157 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 101,101,101 102,102,102 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 83,83,83 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 92,92,92 102,102,102 144,144,144 147,147,147 144,144,144 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 143,143,143 123,123,123 91,91,91 100,100,100 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 160,160,160 91,91,91 85,85,85 110,110,110 90,90,90 100,100,100 91,91,91 86,86,86 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 82,82,82 82,82,82 134,134,134 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 124,124,124 96,96,96 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 72,72,72 131,131,131 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 92,92,92 106,106,106 154,154,154 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 74,74,74 118,118,118 255,255,255 255,255,255 255,255,255 115,115,115 85,85,85 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 86,86,86 89,89,89 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 88,88,88 145,145,145 255,255,255 255,255,255 255,255,255 127,127,127 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 94,94,94 172,172,172 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 143,143,143 80,80,80 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 103,103,103 86,86,86 176,176,176 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 90,90,90 94,94,94 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 90,90,90 109,109,109 255,255,255 255,255,255 255,255,255 81,81,81 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 77,77,77 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 89,89,89 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 89,89,89 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 89,89,89 91,91,91 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 169,169,169 100,100,100 90,90,90 255,255,255 255,255,255 151,151,151 80,80,80 176,176,176 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 104,104,104 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 86,86,86 90,90,90 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 83,83,83 121,121,121 255,255,255 85,85,85 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 161,161,161 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 99,99,99 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 85,85,85 92,92,92 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 114,114,114 116,116,116 74,74,74 159,159,159 96,96,96 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 73,73,73 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 165,165,165 88,88,88 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 94,94,94 92,92,92 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 96,96,96 92,92,92 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 129,129,129 95,95,95 166,166,166 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 159,159,159 81,81,81 99,99,99 132,132,132 255,255,255 255,255,255 155,155,155 99,99,99 72,72,72 100,100,100 180,180,180 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 87,87,87 86,86,86 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 86,86,86 81,81,81 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 100,100,100 151,151,151 255,255,255 255,255,255 168,168,168 177,177,177 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 67,67,67 96,96,96 99,99,99 82,82,82 102,102,102 128,128,128 85,85,85 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 112,112,112 94,94,94 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 101,101,101 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 76,76,76 81,81,81 79,79,79 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 134,134,134 88,88,88 81,81,81 102,102,102 181,181,181 255,255,255 92,92,92 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 85,85,85 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/67_binaried.txt b/ReCapcha/Test/bin/Debug/experiment/67_binaried.txt deleted file mode 100644 index b907a89..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/67_binaried.txt +++ /dev/null @@ -1,40 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/67_greied.txt b/ReCapcha/Test/bin/Debug/experiment/67_greied.txt deleted file mode 100644 index 9b01611..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/67_greied.txt +++ /dev/null @@ -1,40 +0,0 @@ -247,247,247 252,252,252 248,248,248 242,242,242 246,246,246 247,247,247 252,252,252 254,254,254 254,254,254 251,251,251 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 249,249,249 250,250,250 252,252,252 249,249,249 248,248,248 249,249,249 250,250,250 251,251,251 253,253,253 253,253,253 250,250,250 248,248,248 244,244,244 247,247,247 253,253,253 251,251,251 251,251,251 252,252,252 254,254,254 249,249,249 247,247,247 245,245,245 247,247,247 248,248,248 249,249,249 249,249,249 249,249,249 250,250,250 250,250,250 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 252,252,252 250,250,250 249,249,249 245,245,245 246,246,246 250,250,250 252,252,252 248,248,248 247,247,247 251,251,251 254,254,254 252,252,252 252,252,252 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 252,252,252 245,245,245 236,236,236 246,246,246 251,251,251 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 251,251,251 253,253,253 251,251,251 249,249,249 251,251,251 250,250,250 251,251,251 253,253,253 253,253,253 251,251,251 250,250,250 246,246,246 249,249,249 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 250,250,250 248,248,248 248,248,248 250,250,250 251,251,251 252,252,252 252,252,252 252,252,252 251,251,251 251,251,251 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 251,251,251 250,250,250 247,247,247 248,248,248 250,250,250 253,253,253 249,249,249 248,248,248 252,252,252 254,254,254 252,252,252 252,252,252 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -252,252,252 253,253,253 248,248,248 240,240,240 246,246,246 241,241,241 248,248,248 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 253,253,253 255,255,255 253,253,253 252,252,252 251,251,251 251,251,251 253,253,253 251,251,251 250,250,250 253,253,253 254,254,254 253,253,253 252,252,252 251,251,251 252,252,252 254,254,254 253,253,253 254,254,254 254,254,254 252,252,252 251,251,251 251,251,251 252,252,252 255,255,255 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 253,253,253 255,255,255 254,254,254 252,252,252 251,251,251 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 253,253,253 251,251,251 250,250,250 253,253,253 253,253,253 252,252,252 253,253,253 255,255,255 254,254,254 253,253,253 254,254,254 252,252,252 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 -248,248,248 252,252,252 243,243,243 243,243,243 245,245,245 249,249,249 253,253,253 252,252,252 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 253,253,253 251,251,251 250,250,250 251,251,251 254,254,254 252,252,252 251,251,251 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 253,253,253 252,252,252 251,251,251 250,250,250 251,251,251 251,251,251 251,251,251 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 252,252,252 253,253,253 252,252,252 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 251,251,251 250,250,250 253,253,253 255,255,255 255,255,255 255,255,255 -249,249,249 224,224,224 98,98,98 89,89,89 121,121,121 242,242,242 252,252,252 253,253,253 254,254,254 253,253,253 250,250,250 251,251,251 252,252,252 253,253,253 253,253,253 253,253,253 249,249,249 251,251,251 252,252,252 250,250,250 250,250,250 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 251,251,251 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 251,251,251 251,251,251 251,251,251 251,251,251 252,252,252 252,252,252 251,251,251 251,251,251 250,250,250 250,250,250 250,250,250 250,250,250 251,251,251 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 251,251,251 251,251,251 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 252,252,252 252,252,252 254,254,254 253,253,253 251,251,251 250,250,250 253,253,253 255,255,255 255,255,255 255,255,255 -247,247,247 211,211,211 90,90,90 98,98,98 136,136,136 246,246,246 252,252,252 247,247,247 254,254,254 253,253,253 250,250,250 250,250,250 253,253,253 253,253,253 254,254,254 253,253,253 248,248,248 249,249,249 254,254,254 252,252,252 252,252,252 253,253,253 253,253,253 252,252,252 250,250,250 252,252,252 254,254,254 253,253,253 252,252,252 253,253,253 252,252,252 250,250,250 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 251,251,251 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 253,253,253 252,252,252 252,252,252 251,251,251 251,251,251 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 252,252,252 251,251,251 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 252,252,252 251,251,251 252,252,252 254,254,254 253,253,253 251,251,251 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 -252,252,252 241,241,241 184,184,184 184,184,184 198,198,198 246,246,246 253,253,253 253,253,253 253,253,253 254,254,254 252,252,252 254,254,254 253,253,253 253,253,253 253,253,253 250,250,250 246,246,246 247,247,247 250,250,250 252,252,252 254,254,254 254,254,254 253,253,253 250,250,250 249,249,249 252,252,252 252,252,252 250,250,250 251,251,251 253,253,253 251,251,251 250,250,250 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 251,251,251 249,249,249 247,247,247 248,248,248 249,249,249 250,250,250 251,251,251 250,250,250 248,248,248 245,245,245 246,246,246 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 252,252,252 252,252,252 249,249,249 248,248,248 250,250,250 250,250,250 249,249,249 248,248,248 250,250,250 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 251,251,251 252,252,252 250,250,250 250,250,250 251,251,251 249,249,249 249,249,249 248,248,248 248,248,248 249,249,249 251,251,251 251,251,251 249,249,249 248,248,248 249,249,249 251,251,251 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 247,247,247 236,236,236 233,233,233 239,239,239 243,243,243 250,250,250 253,253,253 253,253,253 254,254,254 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 251,251,251 247,247,247 246,246,246 245,245,245 246,246,246 250,250,250 253,253,253 251,251,251 250,250,250 249,249,249 253,253,253 249,249,249 248,248,248 250,250,250 252,252,252 251,251,251 251,251,251 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 250,250,250 248,248,248 249,249,249 251,251,251 252,252,252 250,250,250 248,248,248 248,248,248 247,247,247 249,249,249 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 251,251,251 252,252,252 249,249,249 245,245,245 244,244,244 247,247,247 248,248,248 246,246,246 247,247,247 248,248,248 250,250,250 251,251,251 252,252,252 253,253,253 253,253,253 254,254,254 253,253,253 250,250,250 250,250,250 251,251,251 251,251,251 247,247,247 246,246,246 248,248,248 248,248,248 248,248,248 247,247,247 246,246,246 245,245,245 246,246,246 248,248,248 250,250,250 249,249,249 249,249,249 252,252,252 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -246,246,246 232,232,232 133,133,133 136,136,136 172,172,172 243,243,243 251,251,251 253,253,253 254,254,254 253,253,253 249,249,249 249,249,249 252,252,252 253,253,253 253,253,253 251,251,251 250,250,250 198,198,198 142,142,142 140,140,140 203,203,203 240,240,240 249,249,249 250,250,250 251,251,251 241,241,241 176,176,176 146,146,146 217,217,217 245,245,245 252,252,252 243,243,243 248,248,248 253,253,253 253,253,253 250,250,250 253,253,253 253,253,253 252,252,252 249,249,249 247,247,247 242,242,242 218,218,218 152,152,152 134,134,134 116,116,116 141,141,141 157,157,157 251,251,251 252,252,252 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 253,253,253 245,245,245 246,246,246 220,220,220 142,142,142 208,208,208 238,238,238 180,180,180 135,135,135 179,179,179 249,249,249 250,250,250 249,249,249 252,252,252 247,247,247 253,253,253 253,253,253 252,252,252 252,252,252 245,245,245 245,245,245 242,242,242 165,165,165 119,119,119 96,96,96 111,111,111 193,193,193 217,217,217 157,157,157 132,132,132 208,208,208 247,247,247 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -244,244,244 219,219,219 101,101,101 102,102,102 147,147,147 240,240,240 251,251,251 253,253,253 254,254,254 253,253,253 248,248,248 248,248,248 252,252,252 253,253,253 252,252,252 250,250,250 247,247,247 231,231,231 101,101,101 83,83,83 111,111,111 241,241,241 248,248,248 247,247,247 250,250,250 234,234,234 103,103,103 112,112,112 236,236,236 248,248,248 250,250,250 253,253,253 252,252,252 252,252,252 249,249,249 250,250,250 252,252,252 249,249,249 247,247,247 244,244,244 242,242,242 139,139,139 92,92,92 102,102,102 144,144,144 147,147,147 144,144,144 124,124,124 251,251,251 251,251,251 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 245,245,245 249,249,249 244,244,244 184,184,184 115,115,115 143,143,143 123,123,123 91,91,91 100,100,100 173,173,173 246,246,246 251,251,251 252,252,252 252,252,252 252,252,252 251,251,251 253,253,253 252,252,252 254,254,254 249,249,249 229,229,229 160,160,160 91,91,91 85,85,85 110,110,110 90,90,90 100,100,100 91,91,91 86,86,86 103,103,103 190,190,190 244,244,244 250,250,250 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -249,249,249 216,216,216 82,82,82 82,82,82 134,134,134 239,239,239 252,252,252 253,253,253 253,253,253 254,254,254 251,251,251 252,252,252 253,253,253 252,252,252 253,253,253 253,253,253 240,240,240 245,245,245 124,124,124 96,96,96 86,86,86 214,214,214 243,243,243 243,243,243 240,240,240 195,195,195 71,71,71 148,148,148 242,242,242 246,246,246 244,244,244 255,255,255 253,253,253 251,251,251 245,245,245 248,248,248 250,250,250 244,244,244 244,244,244 236,236,236 152,152,152 72,72,72 131,131,131 217,217,217 242,242,242 242,242,242 242,242,242 236,236,236 252,252,252 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 245,245,245 240,240,240 171,171,171 92,92,92 106,106,106 154,154,154 244,244,244 249,249,249 251,251,251 252,252,252 246,246,246 245,245,245 252,252,252 252,252,252 252,252,252 252,252,252 251,251,251 249,249,249 244,244,244 200,200,200 89,89,89 74,74,74 118,118,118 218,218,218 230,230,230 207,207,207 115,115,115 85,85,85 92,92,92 186,186,186 244,244,244 251,251,251 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -250,250,250 218,218,218 86,86,86 89,89,89 141,141,141 242,242,242 252,252,252 254,254,254 253,253,253 254,254,254 251,251,251 252,252,252 253,253,253 252,252,252 253,253,253 253,253,253 246,246,246 248,248,248 186,186,186 94,94,94 88,88,88 145,145,145 239,239,239 243,243,243 234,234,234 127,127,127 92,92,92 214,214,214 243,243,243 243,243,243 253,253,253 252,252,252 254,254,254 252,252,252 246,246,246 247,247,247 249,249,249 245,245,245 241,241,241 203,203,203 89,89,89 122,122,122 229,229,229 244,244,244 243,243,243 241,241,241 244,244,244 251,251,251 250,250,250 251,251,251 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 251,251,251 251,251,251 242,242,242 241,241,241 146,146,146 94,94,94 172,172,172 243,243,243 245,245,245 252,252,252 247,247,247 239,239,239 242,242,242 249,249,249 252,252,252 252,252,252 251,251,251 252,252,252 252,252,252 247,247,247 237,237,237 143,143,143 80,80,80 98,98,98 193,193,193 240,240,240 239,239,239 234,234,234 174,174,174 103,103,103 86,86,86 176,176,176 244,244,244 251,251,251 255,255,255 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -246,246,246 215,215,215 90,90,90 94,94,94 144,144,144 239,239,239 249,249,249 251,251,251 254,254,254 254,254,254 248,248,248 249,249,249 254,254,254 254,254,254 255,255,255 250,250,250 243,243,243 249,249,249 224,224,224 95,95,95 90,90,90 109,109,109 225,225,225 233,233,233 218,218,218 81,81,81 122,122,122 238,238,238 239,239,239 251,251,251 254,254,254 253,253,253 251,251,251 253,253,253 249,249,249 245,245,245 248,248,248 246,246,246 239,239,239 145,145,145 77,77,77 173,173,173 241,241,241 244,244,244 240,240,240 248,248,248 252,252,252 253,253,253 251,251,251 252,252,252 253,253,253 253,253,253 255,255,255 255,255,255 253,253,253 253,253,253 242,242,242 249,249,249 249,249,249 242,242,242 91,91,91 108,108,108 237,237,237 244,244,244 250,250,250 253,253,253 248,248,248 246,246,246 245,245,245 248,248,248 246,246,246 251,251,251 250,250,250 252,252,252 252,252,252 249,249,249 239,239,239 89,89,89 89,89,89 87,87,87 238,238,238 244,244,244 236,236,236 235,235,235 191,191,191 93,93,93 89,89,89 199,199,199 244,244,244 251,251,251 255,255,255 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -244,244,244 213,213,213 89,89,89 91,91,91 140,140,140 238,238,238 251,251,251 254,254,254 254,254,254 254,254,254 247,247,247 248,248,248 253,253,253 254,254,254 254,254,254 250,250,250 237,237,237 250,250,250 241,241,241 169,169,169 100,100,100 90,90,90 184,184,184 232,232,232 151,151,151 80,80,80 176,176,176 246,246,246 248,248,248 252,252,252 245,245,245 253,253,253 250,250,250 253,253,253 250,250,250 245,245,245 248,248,248 246,246,246 237,237,237 101,101,101 91,91,91 211,211,211 243,243,243 247,247,247 246,246,246 248,248,248 235,235,235 243,243,243 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 253,253,253 254,254,254 249,249,249 247,247,247 246,246,246 238,238,238 88,88,88 126,126,126 238,238,238 238,238,238 251,251,251 253,253,253 248,248,248 244,244,244 244,244,244 242,242,242 249,249,249 253,253,253 252,252,252 250,250,250 251,251,251 248,248,248 239,239,239 74,74,74 104,104,104 81,81,81 240,240,240 250,250,250 247,247,247 242,242,242 193,193,193 72,72,72 74,74,74 191,191,191 245,245,245 251,251,251 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -247,247,247 214,214,214 86,86,86 90,90,90 142,142,142 240,240,240 252,252,252 254,254,254 254,254,254 254,254,254 248,248,248 249,249,249 254,254,254 253,253,253 254,254,254 252,252,252 247,247,247 251,251,251 246,246,246 217,217,217 95,95,95 83,83,83 121,121,121 227,227,227 85,85,85 112,112,112 228,228,228 251,251,251 253,253,253 253,253,253 245,245,245 253,253,253 250,250,250 250,250,250 251,251,251 248,248,248 248,248,248 245,245,245 237,237,237 87,87,87 95,95,95 227,227,227 244,244,244 248,248,248 246,246,246 249,249,249 253,253,253 252,252,252 255,255,255 254,254,254 252,252,252 252,252,252 254,254,254 255,255,255 253,253,253 254,254,254 247,247,247 246,246,246 241,241,241 199,199,199 106,106,106 161,161,161 229,229,229 246,246,246 246,246,246 251,251,251 253,253,253 247,247,247 245,245,245 245,245,245 250,250,250 253,253,253 253,253,253 252,252,252 250,250,250 242,242,242 240,240,240 84,84,84 99,99,99 94,94,94 241,241,241 254,254,254 243,243,243 241,241,241 191,191,191 106,106,106 96,96,96 193,193,193 246,246,246 251,251,251 255,255,255 254,254,254 254,254,254 254,254,254 252,252,252 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -246,246,246 213,213,213 85,85,85 92,92,92 147,147,147 242,242,242 252,252,252 251,251,251 254,254,254 254,254,254 251,251,251 252,252,252 254,254,254 253,253,253 254,254,254 252,252,252 243,243,243 246,246,246 250,250,250 239,239,239 114,114,114 116,116,116 74,74,74 159,159,159 96,96,96 140,140,140 237,237,237 251,251,251 250,250,250 253,253,253 254,254,254 249,249,249 250,250,250 249,249,249 253,253,253 250,250,250 249,249,249 242,242,242 240,240,240 90,90,90 90,90,90 225,225,225 240,240,240 248,248,248 252,252,252 255,255,255 252,252,252 247,247,247 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 244,244,244 242,242,242 250,250,250 176,176,176 82,82,82 192,192,192 241,241,241 244,244,244 251,251,251 252,252,252 251,251,251 246,246,246 246,246,246 250,250,250 254,254,254 252,252,252 252,252,252 254,254,254 255,255,255 246,246,246 241,241,241 96,96,96 73,73,73 95,95,95 218,218,218 250,250,250 246,246,246 241,241,241 165,165,165 88,88,88 79,79,79 192,192,192 245,245,245 251,251,251 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -241,241,241 213,213,213 94,94,94 92,92,92 140,140,140 243,243,243 250,250,250 252,252,252 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 247,247,247 248,248,248 250,250,250 228,228,228 192,192,192 81,81,81 96,96,96 92,92,92 70,70,70 210,210,210 240,240,240 244,244,244 253,253,253 251,251,251 251,251,251 252,252,252 253,253,253 253,253,253 248,248,248 253,253,253 249,249,249 248,248,248 237,237,237 129,129,129 95,95,95 166,166,166 229,229,229 240,240,240 242,242,242 241,241,241 247,247,247 250,250,250 253,253,253 254,254,254 254,254,254 254,254,254 251,251,251 251,251,251 252,252,252 253,253,253 248,248,248 249,249,249 246,246,246 144,144,144 92,92,92 201,201,201 245,245,245 241,241,241 252,252,252 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 247,247,247 248,248,248 238,238,238 159,159,159 81,81,81 99,99,99 132,132,132 223,223,223 228,228,228 155,155,155 99,99,99 72,72,72 100,100,100 180,180,180 244,244,244 249,249,249 252,252,252 254,254,254 252,252,252 251,251,251 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -240,240,240 204,204,204 87,87,87 86,86,86 147,147,147 244,244,244 249,249,249 250,250,250 251,251,251 251,251,251 251,251,251 253,253,253 254,254,254 252,252,252 253,253,253 251,251,251 246,246,246 237,237,237 250,250,250 245,245,245 226,226,226 99,99,99 86,86,86 81,81,81 118,118,118 225,225,225 241,241,241 245,245,245 252,252,252 249,249,249 250,250,250 250,250,250 253,253,253 254,254,254 243,243,243 253,253,253 250,250,250 249,249,249 245,245,245 190,190,190 74,74,74 100,100,100 151,151,151 205,205,205 212,212,212 168,168,168 177,177,177 245,245,245 253,253,253 254,254,254 254,254,254 252,252,252 250,250,250 250,250,250 251,251,251 253,253,253 250,250,250 242,242,242 245,245,245 120,120,120 83,83,83 239,239,239 247,247,247 249,249,249 251,251,251 252,252,252 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 241,241,241 253,253,253 251,251,251 248,248,248 243,243,243 206,206,206 113,113,113 67,67,67 96,96,96 99,99,99 82,82,82 102,102,102 128,128,128 85,85,85 94,94,94 191,191,191 244,244,244 249,249,249 252,252,252 254,254,254 251,251,251 251,251,251 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -244,244,244 211,211,211 112,112,112 94,94,94 146,146,146 229,229,229 247,247,247 249,249,249 252,252,252 252,252,252 252,252,252 253,253,253 255,255,255 253,253,253 254,254,254 253,253,253 250,250,250 245,245,245 247,247,247 247,247,247 231,231,231 120,120,120 101,101,101 91,91,91 184,184,184 241,241,241 246,246,246 250,250,250 254,254,254 250,250,250 253,253,253 251,251,251 253,253,253 254,254,254 243,243,243 252,252,252 252,252,252 247,247,247 247,247,247 239,239,239 191,191,191 113,113,113 76,76,76 81,81,81 79,79,79 116,116,116 196,196,196 250,250,250 253,253,253 254,254,254 254,254,254 252,252,252 250,250,250 250,250,250 251,251,251 253,253,253 250,250,250 236,236,236 243,243,243 100,100,100 90,90,90 241,241,241 242,242,242 251,251,251 252,252,252 252,252,252 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 249,249,249 252,252,252 252,252,252 246,246,246 246,246,246 240,240,240 192,192,192 134,134,134 88,88,88 81,81,81 102,102,102 181,181,181 185,185,185 92,92,92 74,74,74 186,186,186 244,244,244 251,251,251 253,253,253 254,254,254 252,252,252 252,252,252 253,253,253 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -242,242,242 243,243,243 235,235,235 240,240,240 246,246,246 249,249,249 248,248,248 243,243,243 253,253,253 253,253,253 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 250,250,250 250,250,250 250,250,250 249,249,249 246,246,246 234,234,234 243,243,243 239,239,239 232,232,232 247,247,247 250,250,250 253,253,253 255,255,255 252,252,252 254,254,254 251,251,251 252,252,252 253,253,253 250,250,250 251,251,251 250,250,250 244,244,244 249,249,249 246,246,246 244,244,244 242,242,242 222,222,222 210,210,210 240,240,240 248,248,248 250,250,250 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 251,251,251 251,251,251 252,252,252 253,253,253 245,245,245 249,249,249 248,248,248 242,242,242 247,247,247 249,249,249 249,249,249 238,238,238 252,252,252 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 249,249,249 250,250,250 248,248,248 246,246,246 242,242,242 232,232,232 213,213,213 223,223,223 234,234,234 234,234,234 197,197,197 90,90,90 84,84,84 195,195,195 244,244,244 251,251,251 255,255,255 254,254,254 252,252,252 253,253,253 251,251,251 249,249,249 253,253,253 255,255,255 255,255,255 255,255,255 -251,251,251 251,251,251 248,248,248 245,245,245 247,247,247 240,240,240 245,245,245 249,249,249 252,252,252 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 249,249,249 254,254,254 253,253,253 246,246,246 250,250,250 249,249,249 249,249,249 245,245,245 252,252,252 253,253,253 250,250,250 253,253,253 254,254,254 253,253,253 252,252,252 252,252,252 248,248,248 254,254,254 252,252,252 250,250,250 250,250,250 247,247,247 248,248,248 247,247,247 247,247,247 234,234,234 246,246,246 246,246,246 241,241,241 245,245,245 252,252,252 246,246,246 253,253,253 254,254,254 254,254,254 252,252,252 251,251,251 251,251,251 252,252,252 253,253,253 252,252,252 250,250,250 238,238,238 248,248,248 250,250,250 242,242,242 251,251,251 252,252,252 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 251,251,251 246,246,246 249,249,249 250,250,250 249,249,249 245,245,245 248,248,248 246,246,246 246,246,246 246,246,246 239,239,239 230,230,230 186,186,186 88,88,88 92,92,92 192,192,192 244,244,244 251,251,251 254,254,254 254,254,254 253,253,253 254,254,254 248,248,248 246,246,246 252,252,252 255,255,255 255,255,255 255,255,255 -251,251,251 251,251,251 251,251,251 250,250,250 251,251,251 248,248,248 249,249,249 249,249,249 252,252,252 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 254,254,254 253,253,253 252,252,252 252,252,252 251,251,251 254,254,254 254,254,254 251,251,251 250,250,250 248,248,248 250,250,250 254,254,254 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 252,252,252 244,244,244 247,247,247 249,249,249 249,249,249 249,249,249 248,248,248 249,249,249 248,248,248 245,245,245 251,251,251 251,251,251 243,243,243 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 252,252,252 252,252,252 252,252,252 254,254,254 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 252,252,252 249,249,249 253,253,253 252,252,252 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 248,248,248 249,249,249 250,250,250 249,249,249 247,247,247 252,252,252 251,251,251 246,246,246 251,251,251 243,243,243 245,245,245 245,245,245 205,205,205 89,89,89 85,85,85 191,191,191 246,246,246 251,251,251 254,254,254 254,254,254 253,253,253 254,254,254 246,246,246 246,246,246 252,252,252 255,255,255 255,255,255 255,255,255 -251,251,251 249,249,249 250,250,250 254,254,254 252,252,252 252,252,252 250,250,250 248,248,248 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 250,250,250 251,251,251 253,253,253 252,252,252 248,248,248 246,246,246 251,251,251 249,249,249 249,249,249 248,248,248 249,249,249 254,254,254 253,253,253 250,250,250 252,252,252 253,253,253 254,254,254 253,253,253 247,247,247 247,247,247 249,249,249 250,250,250 251,251,251 252,252,252 250,250,250 251,251,251 252,252,252 250,250,250 255,255,255 253,253,253 237,237,237 254,254,254 254,254,254 255,255,255 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 252,252,252 252,252,252 253,253,253 252,252,252 253,253,253 254,254,254 252,252,252 248,248,248 251,251,251 252,252,252 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 251,251,251 249,249,249 244,244,244 248,248,248 252,252,252 253,253,253 251,251,251 254,254,254 255,255,255 253,253,253 247,247,247 194,194,194 103,103,103 106,106,106 191,191,191 248,248,248 252,252,252 254,254,254 254,254,254 254,254,254 253,253,253 247,247,247 247,247,247 252,252,252 255,255,255 255,255,255 255,255,255 -253,253,253 254,254,254 254,254,254 254,254,254 244,244,244 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 250,250,250 253,253,253 253,253,253 255,255,255 254,254,254 251,251,251 250,250,250 248,248,248 249,249,249 250,250,250 248,248,248 254,254,254 254,254,254 247,247,247 252,252,252 253,253,253 247,247,247 254,254,254 253,253,253 251,251,251 250,250,250 248,248,248 250,250,250 253,253,253 253,253,253 252,252,252 254,254,254 254,254,254 251,251,251 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 246,246,246 253,253,253 254,254,254 249,249,249 254,254,254 251,251,251 251,251,251 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 251,251,251 251,251,251 251,251,251 251,251,251 249,249,249 253,253,253 249,249,249 252,252,252 251,251,251 249,249,249 247,247,247 245,245,245 239,239,239 246,246,246 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 249,249,249 249,249,249 253,253,253 255,255,255 255,255,255 255,255,255 -253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 253,253,253 251,251,251 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 251,251,251 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 255,255,255 251,251,251 250,250,250 249,249,249 250,250,250 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 250,250,250 249,249,249 250,250,250 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 252,252,252 251,251,251 251,251,251 253,253,253 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 252,252,252 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 252,252,252 249,249,249 249,249,249 250,250,250 252,252,252 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 251,251,251 251,251,251 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 250,250,250 250,250,250 250,250,250 252,252,252 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -250,250,250 252,252,252 254,254,254 252,252,252 254,254,254 253,253,253 252,252,252 252,252,252 254,254,254 254,254,254 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 250,250,250 250,250,250 251,251,251 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 253,253,253 253,253,253 252,252,252 252,252,252 250,250,250 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 250,250,250 250,250,250 251,251,251 252,252,252 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 253,253,253 252,252,252 250,250,250 252,252,252 254,254,254 252,252,252 252,252,252 254,254,254 253,253,253 251,251,251 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 251,251,251 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 251,251,251 252,252,252 255,255,255 254,254,254 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 253,253,253 250,250,250 248,248,248 251,251,251 255,255,255 252,252,252 252,252,252 254,254,254 253,253,253 251,251,251 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -252,252,252 254,254,254 247,247,247 245,245,245 249,249,249 253,253,253 252,252,252 252,252,252 254,254,254 253,253,253 251,251,251 251,251,251 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 252,252,252 251,251,251 250,250,250 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 253,253,253 253,253,253 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 253,253,253 253,253,253 254,254,254 255,255,255 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 252,252,252 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 -253,253,253 254,254,254 248,248,248 247,247,247 250,250,250 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 251,251,251 252,252,252 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 253,253,253 252,252,252 252,252,252 251,251,251 251,251,251 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 255,255,255 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/67_noised.txt b/ReCapcha/Test/bin/Debug/experiment/67_noised.txt deleted file mode 100644 index 48b94e5..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/67_noised.txt +++ /dev/null @@ -1,40 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 98,98,98 89,89,89 121,121,121 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 90,90,90 98,98,98 136,136,136 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 133,133,133 136,136,136 172,172,172 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 134,134,134 116,116,116 141,141,141 157,157,157 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 142,142,142 255,255,255 255,255,255 180,180,180 135,135,135 179,179,179 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 165,165,165 119,119,119 96,96,96 111,111,111 255,255,255 255,255,255 157,157,157 132,132,132 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 101,101,101 102,102,102 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 83,83,83 111,111,111 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 139,139,139 92,92,92 102,102,102 144,144,144 147,147,147 144,144,144 124,124,124 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 115,115,115 143,143,143 123,123,123 91,91,91 100,100,100 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 160,160,160 91,91,91 85,85,85 110,110,110 90,90,90 100,100,100 91,91,91 86,86,86 103,103,103 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 82,82,82 82,82,82 134,134,134 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 124,124,124 96,96,96 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 148,148,148 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 152,152,152 72,72,72 131,131,131 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 171,171,171 92,92,92 106,106,106 154,154,154 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 74,74,74 118,118,118 255,255,255 255,255,255 255,255,255 115,115,115 85,85,85 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 86,86,86 89,89,89 141,141,141 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 88,88,88 145,145,145 255,255,255 255,255,255 255,255,255 127,127,127 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 146,146,146 94,94,94 172,172,172 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 143,143,143 80,80,80 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 174,174,174 103,103,103 86,86,86 176,176,176 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 90,90,90 94,94,94 144,144,144 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 90,90,90 109,109,109 255,255,255 255,255,255 255,255,255 81,81,81 122,122,122 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 145,145,145 77,77,77 173,173,173 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 108,108,108 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 89,89,89 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 89,89,89 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 89,89,89 91,91,91 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 169,169,169 100,100,100 90,90,90 255,255,255 255,255,255 151,151,151 80,80,80 176,176,176 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 101,101,101 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 126,126,126 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 104,104,104 81,81,81 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 86,86,86 90,90,90 142,142,142 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 83,83,83 121,121,121 255,255,255 85,85,85 112,112,112 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 87,87,87 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 161,161,161 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 84,84,84 99,99,99 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 106,106,106 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 85,85,85 92,92,92 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 114,114,114 116,116,116 74,74,74 159,159,159 96,96,96 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 176,176,176 82,82,82 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 96,96,96 73,73,73 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 165,165,165 88,88,88 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 94,94,94 92,92,92 140,140,140 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 96,96,96 92,92,92 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 129,129,129 95,95,95 166,166,166 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 144,144,144 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 159,159,159 81,81,81 99,99,99 132,132,132 255,255,255 255,255,255 155,155,155 99,99,99 72,72,72 100,100,100 180,180,180 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 87,87,87 86,86,86 147,147,147 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 99,99,99 86,86,86 81,81,81 118,118,118 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 100,100,100 151,151,151 255,255,255 255,255,255 168,168,168 177,177,177 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 67,67,67 96,96,96 99,99,99 82,82,82 102,102,102 128,128,128 85,85,85 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 112,112,112 94,94,94 146,146,146 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 120,120,120 101,101,101 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 113,113,113 76,76,76 81,81,81 79,79,79 116,116,116 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 100,100,100 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 134,134,134 88,88,88 81,81,81 102,102,102 181,181,181 255,255,255 92,92,92 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 85,85,85 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 106,106,106 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/67_original.txt b/ReCapcha/Test/bin/Debug/experiment/67_original.txt deleted file mode 100644 index 33682c7..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/67_original.txt +++ /dev/null @@ -1,40 +0,0 @@ -255,232,255 255,247,255 236,255,255 222,255,251 229,255,255 237,249,255 255,247,254 255,252,255 255,255,252 251,255,249 250,255,252 251,255,252 255,255,252 255,255,254 255,253,255 255,255,252 255,255,238 255,255,240 246,255,255 237,255,255 236,255,255 239,255,255 251,245,255 255,243,255 255,249,255 251,254,255 241,254,255 237,255,254 239,255,238 248,255,240 255,250,255 255,243,255 255,244,255 255,248,255 255,255,254 251,255,242 251,255,235 248,255,234 248,255,240 246,255,244 248,255,245 250,255,244 253,255,241 255,255,240 255,255,241 255,255,247 255,254,254 255,252,255 255,252,255 255,254,255 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,254,255 253,252,255 253,251,255 255,251,255 255,254,255 255,255,252 255,255,254 255,250,255 255,249,255 253,250,255 253,250,255 255,249,255 255,249,255 255,249,255 255,250,255 255,251,255 255,253,255 255,253,255 253,253,255 251,252,255 253,253,255 255,255,254 255,255,247 255,255,240 255,255,237 241,255,241 236,255,248 241,255,255 248,255,255 255,255,234 255,255,231 255,255,245 255,253,255 255,247,255 255,248,255 255,253,255 255,254,255 255,249,255 255,250,255 255,255,249 255,255,245 255,255,252 255,255,255 255,255,255 255,255,255 -255,243,255 255,248,255 230,254,252 213,252,244 230,255,255 243,255,255 255,252,255 255,252,255 255,255,252 251,255,251 250,255,252 251,255,254 255,254,255 255,253,255 255,252,255 255,254,255 255,255,244 255,255,244 250,255,254 243,255,255 241,255,252 243,255,255 251,246,255 255,244,255 255,250,255 251,254,255 244,255,255 243,255,252 244,255,240 251,255,242 255,251,255 255,246,255 255,247,255 255,250,255 255,255,252 253,255,244 253,255,238 251,255,238 250,255,245 250,255,249 250,255,252 251,255,251 255,255,247 255,255,245 255,255,245 255,255,248 255,254,254 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 253,252,255 253,252,255 255,252,255 255,254,255 255,255,251 255,255,252 255,252,255 255,251,255 253,252,255 253,253,255 255,252,255 255,251,255 255,251,255 255,252,255 255,253,255 255,254,255 255,254,255 253,253,255 253,252,255 253,252,255 255,254,255 255,255,251 255,255,244 255,255,242 243,255,245 239,255,252 244,253,255 251,254,255 255,255,238 255,255,234 255,255,247 255,252,255 255,248,255 255,248,255 255,254,255 255,254,255 255,250,255 255,251,255 255,255,248 255,255,245 255,255,252 255,255,255 255,255,255 255,255,255 -255,246,255 255,250,255 234,255,255 217,255,249 230,255,255 230,245,248 251,243,250 255,250,255 255,255,254 253,255,254 250,255,255 251,254,255 255,252,255 255,250,255 255,249,255 255,251,255 255,255,255 255,255,249 255,255,248 253,255,247 251,255,247 251,255,255 251,248,255 251,246,255 253,252,255 253,255,255 253,255,251 253,255,248 255,255,244 255,255,248 255,253,255 255,251,255 255,253,255 255,255,254 255,255,248 255,255,244 255,255,244 255,255,248 255,255,255 255,252,255 255,250,255 255,250,255 255,252,255 255,253,255 255,255,254 255,255,252 255,255,252 255,254,255 255,253,255 255,253,255 255,254,255 255,254,255 253,255,255 253,255,255 253,255,254 253,255,254 253,255,255 253,255,255 253,255,255 253,255,252 253,255,248 255,255,249 255,255,255 253,255,255 251,255,251 251,255,249 255,255,251 255,255,251 255,255,249 255,255,251 255,255,251 255,255,252 255,254,255 253,253,255 253,252,255 253,251,255 255,251,255 255,253,255 255,254,255 255,255,252 250,255,255 248,254,255 251,249,255 255,250,255 255,255,244 255,255,240 255,255,251 255,251,255 255,248,255 255,249,255 255,255,255 253,255,254 253,252,255 255,253,255 255,255,247 255,255,244 255,255,251 255,255,255 255,255,255 255,255,255 -255,235,255 255,247,255 227,248,255 221,255,255 228,254,255 241,253,255 255,249,255 255,248,255 255,254,255 253,255,254 250,255,254 251,255,255 255,253,255 255,252,255 255,250,255 253,251,255 251,251,255 251,254,255 255,255,245 255,255,241 255,255,244 255,255,252 251,250,255 250,250,255 250,255,255 253,255,251 255,255,248 255,255,247 255,255,249 255,255,252 255,255,255 255,255,255 255,255,251 255,255,249 255,255,247 255,255,247 255,255,249 255,255,254 255,251,255 255,249,255 255,246,255 255,246,255 255,246,255 255,248,255 255,251,255 255,253,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 255,254,255 253,255,255 253,255,255 253,255,252 253,255,252 253,255,252 253,255,252 253,255,251 253,255,249 253,255,249 253,255,249 253,255,252 251,255,251 250,255,248 250,255,245 253,255,245 255,255,245 255,255,245 255,255,245 255,255,248 255,255,251 255,255,254 255,254,255 255,252,255 255,251,255 255,251,255 255,251,255 255,252,255 255,252,255 253,252,255 253,250,255 255,245,255 255,248,255 255,255,251 255,255,247 255,253,255 255,250,255 255,250,255 255,251,255 255,255,251 253,255,251 253,253,255 253,254,255 253,255,247 253,255,244 255,255,251 255,255,255 255,255,255 255,255,255 -255,237,255 219,203,250 73,88,134 59,84,126 96,116,151 232,239,255 255,248,255 255,249,255 255,254,255 253,255,251 250,255,247 251,255,247 255,255,248 255,255,249 255,255,251 251,254,255 244,250,255 248,251,255 255,255,247 255,255,240 255,255,242 255,255,249 253,252,255 248,254,255 248,255,254 253,255,248 255,255,248 255,254,251 255,251,255 255,252,255 253,255,254 250,255,249 255,255,248 255,255,248 255,255,249 255,255,251 255,254,254 255,253,255 255,251,255 255,249,255 255,246,255 255,244,255 255,244,255 255,244,255 255,246,255 255,249,255 255,252,255 255,254,255 255,253,255 255,253,255 255,253,255 255,254,255 253,255,255 253,255,254 253,255,252 253,255,251 251,255,248 251,255,248 251,255,248 251,255,249 251,255,252 250,255,252 250,255,249 250,255,249 248,255,249 248,255,249 250,255,247 251,255,245 255,255,245 255,255,245 255,255,248 255,255,249 255,255,252 255,255,254 255,255,255 255,254,255 255,253,255 253,252,255 253,251,255 255,249,255 255,248,255 255,246,255 255,243,255 255,245,255 255,252,255 255,254,255 255,250,255 255,250,255 255,251,255 255,254,255 255,255,248 253,255,248 253,254,255 251,255,255 251,255,247 251,255,244 253,255,251 255,255,255 255,255,255 255,255,255 -255,233,255 204,188,241 63,74,134 64,87,143 109,128,173 239,246,255 255,246,255 254,237,250 255,253,255 253,255,252 250,255,247 251,255,245 255,255,249 255,255,251 255,255,252 250,254,255 241,248,255 243,249,255 255,254,255 255,255,248 255,255,247 255,255,249 251,255,255 246,255,255 246,255,249 253,255,248 255,253,255 255,249,255 255,247,255 255,250,255 250,255,252 246,255,249 255,255,252 255,255,254 255,254,255 255,254,255 255,254,255 255,254,254 255,255,252 255,254,254 255,252,255 255,250,255 255,248,255 255,248,255 251,249,255 250,252,255 248,255,255 250,255,254 253,255,255 255,254,255 255,253,255 255,254,255 253,255,255 253,255,252 253,255,252 253,255,249 251,255,247 251,255,247 251,255,248 250,255,254 250,252,255 248,253,255 246,255,254 246,255,254 246,255,255 246,255,255 248,255,255 250,255,252 253,255,249 255,255,249 255,255,251 255,255,251 255,255,252 255,255,251 255,255,251 255,255,251 253,255,255 251,254,255 250,251,255 250,250,255 255,250,255 255,250,255 255,249,255 255,250,255 255,254,255 255,255,255 255,253,255 255,253,255 255,255,254 255,255,248 255,255,244 255,255,247 253,255,255 251,254,255 251,255,249 251,255,248 253,255,252 255,255,255 255,255,255 255,255,255 -255,246,255 237,231,255 154,171,228 147,174,231 170,192,234 237,248,255 255,249,255 255,250,255 255,251,255 253,254,255 251,255,252 253,255,254 255,251,255 255,249,255 255,249,255 248,249,255 237,248,255 239,247,255 251,246,255 255,248,255 255,253,255 255,255,252 250,255,254 246,255,251 248,255,245 251,255,251 255,246,255 255,242,255 255,245,255 255,250,255 246,255,252 244,255,251 253,252,255 255,249,255 255,249,255 255,251,255 255,255,252 255,255,245 255,255,237 255,255,233 255,255,235 255,255,238 251,255,245 250,255,249 246,255,249 243,255,247 241,255,241 243,255,242 250,255,249 253,255,255 255,254,255 255,254,255 255,255,254 255,255,252 253,255,254 253,255,251 251,255,247 251,255,247 250,255,252 248,253,255 246,246,255 244,246,255 243,253,255 243,253,255 246,246,255 246,245,255 246,249,255 248,251,255 250,254,255 253,254,255 255,254,255 255,254,255 255,255,252 255,255,249 255,255,244 255,255,244 251,255,248 248,255,255 243,253,255 243,254,255 248,255,251 250,255,244 248,255,244 246,255,244 246,255,245 246,255,248 246,255,254 248,255,251 251,255,242 253,255,238 255,255,238 255,255,245 255,254,255 253,252,255 251,255,255 251,255,254 253,255,255 255,255,255 255,255,255 255,255,255 -255,245,255 246,242,255 220,235,255 212,234,255 221,242,255 232,242,255 252,243,255 255,250,255 255,251,255 253,254,255 251,255,251 253,255,252 255,251,255 255,249,255 255,249,255 248,251,255 237,251,255 236,247,255 243,237,255 246,237,255 250,247,255 250,254,255 246,255,254 246,255,249 248,255,245 250,255,255 253,240,255 255,236,255 253,244,255 251,251,255 246,255,252 246,255,252 251,251,255 253,249,255 255,250,255 255,252,255 255,255,254 255,255,247 255,255,240 253,255,238 251,255,242 250,255,248 246,255,255 243,252,255 239,252,255 237,252,255 234,254,255 239,255,255 248,255,252 253,255,251 255,254,255 255,254,255 255,255,252 255,255,252 253,255,255 253,255,254 251,255,248 250,255,249 248,255,255 246,247,255 244,237,255 241,237,255 241,247,255 241,248,255 244,241,255 246,240,255 246,245,255 246,249,255 248,251,255 251,251,255 255,251,255 255,251,255 255,254,255 255,255,249 255,255,242 255,255,242 250,255,248 243,255,255 236,250,255 236,248,255 239,250,255 239,252,255 237,254,255 234,254,255 232,251,255 232,249,255 236,248,255 239,252,255 244,255,251 250,255,242 253,255,241 255,255,247 255,253,255 255,252,255 255,255,255 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -249,235,255 225,217,255 93,97,210 89,102,218 137,150,229 236,240,255 255,245,255 255,249,255 255,252,255 253,255,252 251,255,241 253,255,240 255,255,248 255,255,251 255,255,249 248,255,251 241,255,254 180,194,222 114,112,202 111,106,205 180,188,241 226,240,255 240,253,255 246,255,251 248,255,251 233,237,255 159,148,221 126,117,197 202,208,243 234,247,255 246,255,255 239,249,243 245,250,251 251,254,255 251,255,255 247,251,252 250,255,255 250,255,255 248,254,255 244,248,255 244,244,255 238,235,255 203,196,255 129,121,208 108,99,196 86,79,183 111,103,210 135,131,207 248,251,255 253,255,248 255,255,255 255,254,255 255,255,252 255,255,252 255,254,255 253,255,255 251,255,251 250,255,254 238,244,255 244,241,255 210,197,255 119,110,197 189,193,242 227,232,255 167,158,215 124,112,170 168,165,204 245,247,255 246,250,255 246,247,255 253,249,255 247,240,255 255,250,255 255,252,252 255,255,246 255,255,247 239,249,249 233,247,255 228,243,255 135,144,218 88,83,188 63,57,170 77,79,179 160,165,255 196,202,255 117,121,234 96,100,202 183,188,255 239,247,255 246,255,255 253,255,252 255,255,252 255,253,255 255,254,255 255,255,249 255,255,248 255,255,252 255,255,255 255,255,255 255,255,255 -244,234,255 204,200,255 57,60,188 52,61,194 110,121,211 230,235,255 254,245,255 255,250,255 255,252,255 253,255,252 251,255,240 253,255,238 255,255,248 255,255,251 255,255,248 250,255,247 243,255,245 213,229,252 65,64,174 41,39,169 76,89,168 225,245,255 236,253,255 238,251,253 244,253,255 222,225,255 76,71,163 82,81,173 218,237,255 236,255,255 244,254,254 251,255,254 250,255,251 250,255,251 247,255,246 247,255,250 246,255,255 241,251,255 241,246,255 239,240,255 237,234,255 115,111,193 66,58,153 74,65,169 114,105,215 115,106,222 111,101,221 99,93,180 248,251,255 253,255,247 255,255,255 255,254,255 255,255,252 255,255,252 255,252,255 253,253,255 249,255,249 240,248,247 244,249,255 241,237,255 159,142,253 89,73,185 120,122,187 105,109,157 78,69,126 91,79,131 163,163,193 238,245,255 246,253,255 248,253,255 253,249,255 255,248,255 255,244,255 255,251,255 255,252,249 253,255,255 243,250,255 210,223,255 125,138,217 50,57,166 44,39,172 69,62,199 45,53,172 52,63,185 38,46,190 34,38,187 57,60,194 156,161,255 234,243,255 244,252,255 255,254,255 255,254,255 255,252,255 255,253,255 255,255,249 255,255,248 255,255,252 255,255,255 255,255,255 255,255,255 -245,249,255 195,202,252 36,46,164 30,44,174 95,113,196 227,237,255 255,248,255 255,251,255 255,251,255 255,254,255 253,255,245 255,255,247 255,251,255 255,248,255 255,250,255 250,255,255 236,253,232 233,249,255 85,84,204 47,46,196 40,56,163 183,204,255 229,247,255 230,244,255 228,237,255 173,176,237 37,39,139 112,121,211 223,248,255 231,254,255 240,245,248 255,255,255 255,255,251 251,255,247 245,255,237 246,255,245 243,255,254 231,246,255 234,243,255 225,229,255 125,127,205 43,47,126 104,111,180 193,204,255 230,241,255 230,242,255 232,240,255 222,231,255 248,255,254 253,255,245 255,254,255 255,253,255 255,255,252 255,255,254 255,251,255 253,252,255 251,255,251 248,255,255 238,242,255 235,230,255 143,120,252 61,42,175 79,82,157 135,141,188 242,235,255 250,243,255 248,252,255 246,255,255 239,253,247 240,248,247 253,250,255 255,247,255 255,246,255 255,248,255 254,245,255 248,246,255 237,242,255 169,176,255 43,51,174 25,33,164 78,87,190 191,208,255 204,233,255 168,199,255 60,84,203 30,48,179 42,58,178 148,162,250 230,247,255 243,255,255 255,254,255 255,253,255 255,251,255 255,251,255 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -243,253,255 196,206,254 36,48,174 34,47,187 100,119,206 229,242,255 253,249,255 255,252,255 255,251,255 255,254,255 253,255,245 255,255,247 255,250,255 255,247,255 255,249,255 251,255,255 246,255,238 237,253,255 152,152,255 44,42,196 38,48,179 102,120,215 221,241,255 228,246,255 221,228,255 98,102,183 55,62,159 187,200,255 225,249,255 229,250,252 253,253,255 255,250,253 255,255,254 255,255,246 248,255,235 246,255,240 241,255,252 233,248,255 230,238,255 176,180,255 57,61,150 91,98,178 210,224,255 228,249,255 226,248,255 226,246,251 231,247,255 243,255,255 250,255,247 253,255,247 255,253,255 255,251,255 255,255,254 255,255,254 255,251,255 253,252,255 250,255,248 248,255,252 233,239,255 237,233,255 115,91,233 59,41,184 143,149,226 232,244,255 244,238,255 254,247,255 244,251,248 234,250,233 236,255,236 245,255,248 251,252,255 255,247,255 255,244,255 255,246,255 255,247,255 246,242,255 227,230,255 104,111,214 25,31,184 44,52,199 156,170,253 221,244,255 212,250,255 204,245,255 120,149,253 47,69,194 35,53,170 137,155,238 228,249,255 243,255,255 255,255,255 255,253,255 255,251,255 255,251,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -238,246,255 191,200,255 37,43,192 35,42,205 101,115,217 226,236,255 249,243,255 255,247,253 255,252,255 255,255,252 253,255,238 255,255,238 255,255,254 255,252,255 255,255,255 250,255,247 242,255,233 239,255,255 209,208,255 54,46,187 42,40,190 63,69,196 200,222,255 212,233,255 197,204,255 44,49,152 88,100,178 222,239,255 223,240,255 244,254,255 255,253,255 255,249,255 255,247,253 255,255,251 255,255,237 247,255,234 241,255,249 234,251,255 228,234,255 111,114,212 41,44,148 140,147,234 227,243,255 228,250,255 228,252,242 243,255,247 248,255,254 250,255,254 253,255,247 253,255,249 255,251,255 255,250,255 255,255,255 255,255,255 255,251,255 253,252,255 241,251,235 246,255,246 243,251,255 237,234,255 57,38,179 72,56,198 223,235,255 230,248,255 251,246,255 255,251,255 247,255,243 248,255,237 244,255,237 246,255,244 243,246,250 254,244,255 255,240,255 255,247,255 255,248,255 248,245,255 229,234,255 45,55,169 27,35,206 29,38,195 225,234,255 230,247,255 210,245,255 207,245,255 146,172,255 38,57,186 39,54,176 164,178,255 230,249,255 243,255,255 255,255,255 255,253,255 255,251,255 255,252,255 255,254,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -234,245,255 188,197,255 34,38,197 30,37,208 96,109,217 225,234,255 252,247,255 255,252,255 255,252,255 255,255,252 253,255,235 255,255,235 255,255,251 255,253,255 255,255,252 250,255,245 234,253,226 241,255,255 236,234,255 135,124,248 57,40,203 43,38,189 140,162,250 207,234,255 103,113,237 37,43,162 146,162,221 234,249,255 241,248,255 251,252,255 248,241,248 255,250,255 255,241,255 255,250,255 255,255,240 249,255,231 243,255,247 234,251,255 225,231,255 66,66,172 54,55,165 186,193,255 228,247,255 233,255,253 244,255,241 251,255,240 237,236,232 246,241,243 255,255,249 253,255,252 255,249,255 255,249,255 255,254,255 255,255,255 255,251,255 253,254,255 251,255,241 246,255,242 236,248,255 229,230,255 55,36,175 89,76,214 221,239,255 220,241,255 251,247,255 255,250,255 249,255,241 245,255,232 244,255,234 239,255,234 246,250,251 255,249,255 255,248,255 255,242,255 254,246,255 245,246,255 227,237,255 27,41,154 37,51,224 21,32,190 232,233,255 244,252,255 232,255,255 220,251,255 153,172,255 20,32,164 26,35,162 154,165,255 232,249,255 244,255,254 255,255,255 255,253,255 255,252,255 255,253,255 251,255,255 251,255,254 253,255,255 255,255,255 255,255,255 255,255,255 -235,253,255 187,202,255 30,38,191 28,37,205 98,113,215 227,240,255 253,250,255 255,253,255 255,252,255 255,255,254 253,255,238 255,255,238 255,253,255 255,250,255 255,253,255 250,255,252 244,255,244 243,255,255 244,241,255 208,189,255 60,28,199 38,20,191 72,93,198 198,230,255 28,39,190 65,71,200 206,224,255 244,255,255 255,251,255 255,249,255 250,239,247 255,249,255 255,240,255 255,242,255 255,255,245 255,255,236 246,255,244 233,249,255 225,232,255 52,54,156 58,61,166 210,217,255 230,249,255 239,255,251 248,255,236 255,255,239 255,250,255 255,248,255 255,255,255 253,255,255 255,247,255 255,247,255 255,253,255 255,255,255 255,251,255 253,255,255 250,255,237 246,255,237 231,247,246 178,184,237 72,58,190 123,115,246 205,228,255 230,253,255 246,239,255 255,243,255 255,255,249 250,255,238 246,255,235 243,255,239 247,251,252 255,249,255 255,249,255 255,247,255 253,248,249 233,240,255 225,241,255 36,58,160 30,52,217 35,49,199 237,231,255 255,253,255 236,252,241 224,245,255 156,164,255 59,61,199 51,53,185 159,165,255 236,248,255 246,255,254 255,255,255 255,253,255 255,253,255 255,254,255 248,255,254 248,255,252 253,255,254 255,255,255 255,255,255 255,255,255 -233,251,255 186,200,255 36,41,180 38,43,195 107,119,215 230,241,255 250,251,255 254,249,250 255,252,255 253,254,255 253,255,247 255,255,247 255,253,255 255,250,255 255,253,255 251,255,252 240,255,236 239,255,244 248,247,255 239,224,255 82,54,207 73,56,221 24,42,157 104,131,242 39,50,201 94,102,225 221,237,255 246,255,254 253,246,253 255,251,255 255,254,254 255,243,251 255,241,255 255,239,255 255,255,249 255,255,241 246,255,248 228,243,255 230,236,255 58,60,154 56,58,158 207,213,255 227,239,255 239,252,255 248,255,255 255,255,255 255,247,255 252,236,255 255,253,255 255,254,255 255,249,255 255,250,255 255,255,254 255,255,251 255,254,255 251,255,255 241,255,237 236,254,237 241,254,255 157,162,211 52,44,151 163,160,255 223,247,255 227,250,255 251,249,255 255,248,255 252,253,249 246,255,239 244,255,240 250,255,247 253,255,255 255,247,255 255,248,255 255,253,255 255,255,255 238,247,255 227,241,255 51,70,167 12,29,180 42,50,194 206,195,255 253,242,255 236,248,255 225,244,255 121,132,243 37,44,185 32,37,170 158,165,255 234,248,255 246,255,252 255,255,252 255,253,255 255,251,255 255,251,255 248,255,255 246,255,254 253,255,255 255,255,255 255,255,255 255,255,255 -227,241,255 189,197,255 57,53,172 55,49,174 110,111,201 234,241,255 243,252,255 248,255,255 250,252,255 251,251,255 251,251,255 255,253,255 255,254,255 255,255,252 255,255,251 255,255,245 253,255,235 248,255,242 244,251,255 215,216,255 164,158,255 41,36,167 50,58,182 43,55,179 21,33,157 182,194,255 226,241,255 233,245,255 250,254,255 255,252,247 255,255,244 255,255,247 255,251,255 255,251,255 252,249,245 253,255,251 242,251,254 239,250,255 226,232,255 102,105,180 65,64,158 135,134,230 217,217,255 232,235,255 235,238,255 233,235,255 243,245,255 248,247,255 255,250,255 255,252,255 255,254,255 255,255,252 255,255,245 253,255,245 251,255,252 250,255,255 241,248,255 244,250,255 240,245,255 126,130,178 70,72,136 178,185,240 230,250,255 226,245,252 248,255,255 255,255,255 253,255,254 253,255,254 253,255,255 255,254,255 255,254,255 255,254,255 255,255,254 253,255,255 241,247,254 241,248,255 227,232,255 125,129,224 38,38,168 56,50,193 98,84,215 210,204,255 207,222,255 108,133,225 40,65,193 10,32,174 45,62,195 138,155,248 228,250,255 243,255,249 255,255,247 255,254,254 255,246,255 255,245,255 251,251,255 250,255,255 253,255,255 255,255,255 255,255,255 255,255,255 -226,239,255 177,185,252 58,54,150 58,50,151 123,121,197 237,242,255 240,253,255 242,255,253 246,253,255 250,250,255 253,247,255 255,250,255 255,255,254 255,255,248 255,255,249 255,255,245 253,255,230 237,249,227 244,253,255 237,243,255 210,214,255 64,65,169 46,49,164 40,46,159 78,89,187 204,217,255 228,242,255 235,245,255 248,254,255 252,253,243 255,255,242 255,255,241 255,255,249 255,255,254 244,245,241 251,255,255 243,252,255 241,251,255 237,243,255 168,171,232 47,48,129 71,67,162 122,118,214 181,179,255 190,192,255 147,153,206 159,169,203 238,244,255 255,249,255 255,252,255 255,255,252 255,255,247 255,255,242 253,255,242 251,255,249 250,255,255 246,249,255 236,236,255 241,241,255 103,106,151 66,73,112 226,237,255 236,252,255 238,254,255 248,255,252 251,255,251 253,255,255 253,253,255 255,251,255 255,252,255 255,254,255 255,255,254 242,244,238 251,255,254 246,254,255 241,248,255 236,239,255 183,181,255 82,76,183 31,22,149 57,46,186 57,53,188 34,51,161 48,75,185 64,93,227 20,47,188 36,57,189 150,168,255 228,249,255 243,255,251 255,255,247 255,254,254 255,244,255 255,244,255 253,251,255 251,255,255 253,255,255 255,255,255 255,255,255 255,255,255 -232,247,255 189,199,246 88,86,162 71,66,145 126,127,185 214,222,252 238,252,251 244,255,249 248,255,255 250,251,255 253,249,255 255,250,255 255,255,255 255,255,251 255,255,252 255,255,249 255,255,241 246,253,238 242,246,255 243,244,255 219,219,255 93,94,175 71,73,161 60,66,149 154,165,233 228,242,255 236,247,255 244,251,255 253,254,255 255,250,247 255,255,249 255,253,246 255,255,251 255,255,252 244,246,240 251,255,251 246,255,255 238,248,255 239,247,255 228,234,255 168,170,235 87,87,165 50,49,129 57,56,130 59,60,120 98,104,147 182,192,216 244,251,255 255,250,255 255,252,255 255,255,252 255,255,247 255,255,242 253,255,244 251,255,249 250,255,255 248,249,255 228,227,255 239,237,255 87,86,128 76,80,115 229,239,255 229,242,255 243,255,255 248,255,254 251,255,252 253,255,255 253,252,255 255,251,255 255,252,255 255,254,255 255,255,252 250,254,243 253,255,248 248,255,254 238,246,255 239,245,255 233,234,255 166,164,246 105,100,199 56,49,160 46,46,152 61,79,168 133,159,253 139,163,255 34,53,190 21,33,169 146,158,255 232,245,255 244,255,255 255,255,251 255,254,255 255,246,255 255,247,255 251,255,255 250,255,249 253,255,254 255,255,255 255,255,255 255,255,255 -229,244,255 232,243,255 225,227,255 233,232,255 241,243,255 243,251,255 243,255,248 238,254,237 250,255,255 251,253,255 253,250,255 255,250,255 255,253,255 255,254,255 255,254,255 255,255,254 253,254,244 251,253,247 248,248,255 248,246,255 243,240,255 223,224,255 236,238,255 228,235,255 217,226,255 239,249,255 244,253,255 250,255,255 255,255,255 255,250,251 255,252,255 255,248,252 255,251,250 255,255,251 251,254,245 251,255,249 246,255,251 235,248,250 241,251,255 237,246,255 236,241,255 236,237,255 205,206,255 190,191,249 233,233,255 243,246,255 243,252,255 248,253,255 255,251,255 255,252,255 255,255,254 255,255,248 255,255,244 255,255,244 253,255,249 251,255,255 240,240,255 248,246,255 246,244,255 237,234,255 242,244,255 243,250,255 241,251,255 230,242,244 248,255,254 250,255,254 253,254,255 253,252,255 255,251,255 255,252,255 255,254,255 255,255,251 255,255,245 255,255,244 248,255,244 245,253,252 242,249,255 239,245,255 234,237,255 222,220,255 195,190,255 208,208,255 215,232,255 212,235,255 159,179,255 38,51,181 37,42,175 163,167,255 236,242,255 248,252,255 255,255,255 255,253,255 255,248,255 255,250,255 251,255,247 250,255,242 253,255,251 255,255,255 255,255,255 255,255,255 -243,255,255 243,255,255 243,247,255 240,242,255 240,246,255 233,242,245 242,255,239 250,255,242 251,255,251 253,254,255 255,251,255 255,251,255 255,253,255 255,253,255 255,253,255 255,253,255 251,249,249 255,254,255 255,251,255 243,241,255 250,246,255 246,246,255 246,247,255 239,243,255 248,254,255 250,255,254 250,255,246 255,255,249 255,255,254 255,251,255 255,248,255 255,246,255 252,245,248 255,255,252 255,255,248 250,255,246 248,255,248 240,255,247 239,251,255 238,248,255 239,247,255 222,227,255 241,242,255 241,243,255 233,235,255 238,242,255 248,254,255 243,246,250 255,251,255 255,252,255 255,255,254 255,255,248 255,255,245 255,255,245 253,255,249 251,255,255 251,251,255 250,247,255 233,228,255 248,243,255 248,248,255 235,238,253 246,252,255 248,255,255 250,255,254 250,255,254 253,254,255 253,252,255 255,251,255 255,252,255 255,254,255 255,255,251 255,255,244 250,255,234 253,255,241 250,255,247 244,252,251 237,245,255 241,248,255 241,244,255 244,241,255 241,242,255 225,239,255 209,227,255 147,160,252 45,52,169 52,49,175 163,159,255 239,240,255 250,250,255 255,252,255 255,253,255 255,250,255 255,254,255 251,255,240 250,255,235 253,255,249 255,255,255 255,255,255 255,255,255 -250,255,248 247,255,251 248,252,255 247,250,255 248,252,255 245,252,247 251,255,242 251,255,242 253,255,249 253,255,255 255,252,255 255,251,255 255,253,255 255,253,255 255,252,255 255,252,255 251,250,254 254,253,255 255,251,255 252,250,255 253,250,255 251,249,255 253,254,255 255,255,252 255,255,245 255,255,242 254,255,236 255,255,242 255,254,254 255,250,255 255,246,255 255,246,255 255,249,255 255,255,254 253,255,249 243,252,239 245,255,242 246,255,248 243,255,251 241,252,255 240,249,255 243,249,255 244,247,255 240,241,255 250,250,255 248,250,255 242,245,243 253,255,254 255,252,255 255,252,255 255,255,255 255,255,249 255,255,247 255,255,247 253,255,249 253,255,255 253,252,255 253,249,255 253,247,255 253,247,255 251,249,255 251,251,255 246,249,253 251,255,254 250,255,252 250,255,254 253,254,255 253,252,255 255,251,255 255,252,255 255,253,255 255,255,252 253,253,239 255,255,237 255,255,240 253,255,241 246,255,242 248,255,254 246,254,255 241,244,255 250,248,255 238,238,255 235,245,255 234,246,255 177,183,255 56,56,156 52,46,157 166,158,251 243,240,255 251,249,255 255,252,255 255,253,255 255,251,255 255,255,254 250,255,235 250,255,234 253,255,248 255,255,255 255,255,255 255,255,255 -253,255,245 249,254,245 249,251,252 253,254,255 251,254,252 253,255,249 253,255,244 249,255,240 255,255,249 255,255,254 255,254,255 255,253,255 255,254,255 255,253,255 255,252,255 253,252,255 251,254,255 247,250,254 248,251,255 252,252,255 252,251,255 250,248,248 250,248,240 255,255,244 255,255,238 255,255,237 255,255,236 255,255,239 255,255,254 255,250,255 255,241,255 255,246,255 255,251,255 255,254,255 253,255,252 246,254,243 246,255,241 248,255,245 248,255,248 246,255,252 246,255,255 245,252,255 248,251,255 250,252,255 249,248,255 255,255,255 255,255,251 239,238,234 255,253,255 255,252,255 255,255,255 255,255,251 255,255,248 255,255,247 255,255,249 255,255,254 252,250,255 253,249,255 255,249,255 254,248,255 254,250,255 255,253,255 252,252,252 248,252,246 251,255,249 250,255,251 253,255,255 253,253,255 255,252,255 255,252,255 255,253,255 255,255,254 255,255,246 255,255,244 255,255,239 248,253,232 250,255,239 253,255,248 251,255,254 250,252,252 255,254,255 255,255,255 250,255,255 240,248,255 175,177,231 79,77,153 82,73,163 173,163,239 248,243,255 253,250,255 255,254,255 255,254,255 255,253,255 253,255,252 250,255,238 250,255,237 253,255,249 255,255,255 255,255,255 255,255,255 -255,255,251 255,255,252 255,255,254 255,255,254 246,245,241 255,255,249 255,255,248 254,255,247 255,255,251 255,255,252 255,255,255 255,254,255 255,254,255 255,254,255 255,253,255 253,253,255 248,255,255 245,253,253 250,255,255 251,255,255 255,255,255 255,255,252 255,255,245 255,255,242 255,255,234 255,255,238 255,255,241 254,253,239 255,255,254 255,252,255 246,240,255 253,248,255 255,251,255 247,245,251 253,255,255 253,255,251 251,255,248 250,255,245 247,255,244 249,255,248 250,255,254 250,255,255 250,253,255 253,254,255 255,254,255 255,252,248 255,254,246 255,255,251 255,254,255 255,253,255 255,254,255 255,255,252 255,255,249 255,255,249 255,255,251 255,255,254 255,253,255 255,252,255 247,241,252 255,251,255 255,253,255 251,248,250 255,255,252 252,255,246 251,255,248 251,255,249 253,255,254 253,255,255 255,253,255 255,252,255 255,252,255 255,253,255 255,255,252 255,255,248 255,255,244 255,255,244 255,255,245 253,255,246 250,252,246 255,255,251 255,250,243 255,255,248 253,255,247 245,249,254 244,244,255 243,238,255 236,227,255 246,238,255 251,247,255 255,254,255 255,255,254 255,255,252 255,254,255 253,255,254 250,255,244 250,255,242 253,255,251 255,255,255 255,255,255 255,255,255 -255,251,255 255,253,255 255,254,255 255,255,254 255,255,254 255,255,254 255,254,255 255,255,255 255,255,254 255,255,252 255,255,252 255,255,254 253,255,255 253,255,255 253,254,255 251,255,255 246,255,254 244,255,254 246,255,254 250,255,255 253,255,255 255,255,254 255,255,252 255,255,249 255,255,247 255,255,247 255,255,247 255,255,249 253,255,255 251,254,255 248,252,255 250,251,255 253,250,255 255,251,255 255,254,255 253,255,254 253,255,251 251,255,248 251,255,248 251,255,249 253,255,251 253,255,254 255,255,255 255,255,255 255,254,255 255,255,252 255,255,251 255,255,252 255,254,255 253,253,255 255,254,255 255,255,254 255,255,252 255,255,251 255,255,252 255,255,254 255,254,255 255,253,255 255,252,255 255,253,255 255,254,255 255,255,254 255,255,252 255,255,249 253,255,247 251,255,248 253,255,251 253,255,254 255,253,255 255,253,255 255,251,255 255,252,255 255,253,255 255,255,254 255,255,251 255,255,251 255,255,251 255,255,252 255,255,254 255,255,252 255,255,249 255,255,248 255,255,248 255,255,255 251,249,255 250,245,255 250,244,255 251,246,255 255,254,255 255,255,249 255,255,248 255,255,251 255,254,255 253,254,255 251,255,252 251,255,251 253,255,254 255,255,255 255,255,255 255,255,255 -255,246,255 255,249,255 255,253,255 255,255,252 255,254,255 255,253,255 255,251,255 255,251,255 255,254,255 255,255,252 255,255,251 255,255,251 253,255,254 253,255,255 253,255,255 250,255,254 244,255,251 243,255,251 244,255,252 248,255,254 251,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,254 255,255,254 253,255,254 250,255,255 248,255,255 244,255,255 246,254,255 251,251,255 255,251,255 255,252,255 255,254,255 253,255,254 253,255,252 253,255,251 255,255,249 255,255,251 255,255,252 255,255,254 255,255,254 255,255,254 255,255,254 255,255,252 255,255,254 255,254,255 253,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,254 255,255,252 255,255,249 253,255,248 251,255,247 253,255,249 253,255,252 255,254,255 255,253,255 255,252,255 255,252,255 255,252,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,252 255,255,251 255,255,249 255,255,252 255,252,255 255,251,255 255,251,255 255,253,255 255,255,248 255,255,244 255,255,244 255,255,249 255,254,255 253,252,255 251,254,255 251,254,255 253,255,255 255,255,255 255,255,255 255,255,255 -255,243,255 255,246,255 255,253,255 255,255,252 255,254,255 255,251,255 255,248,255 255,249,255 255,253,255 255,255,252 255,255,248 255,255,248 253,255,254 253,255,255 253,255,254 250,255,252 244,255,249 243,255,249 244,255,252 248,255,254 251,255,255 253,253,255 255,252,255 255,251,255 255,251,255 255,252,255 253,252,255 251,254,255 248,255,255 246,255,255 243,255,255 244,255,255 251,253,255 255,251,255 255,252,255 255,253,255 255,254,255 255,255,255 255,255,254 255,255,252 255,255,252 255,255,252 255,255,254 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 253,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,251 255,255,249 253,255,248 253,255,249 253,255,251 255,255,254 255,254,255 255,253,255 255,253,255 255,252,255 255,252,255 255,251,255 255,252,255 255,252,255 255,252,255 255,252,255 255,251,255 255,252,255 255,254,255 255,254,254 255,255,252 255,254,255 255,254,255 255,255,252 255,255,248 255,255,242 255,255,240 255,255,242 255,255,248 255,254,255 255,251,255 253,250,255 253,251,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,241,255 255,246,255 255,254,254 255,255,248 255,255,254 255,251,255 255,246,255 255,247,255 255,252,255 255,255,252 255,255,247 255,255,247 253,255,252 253,255,255 253,255,254 251,255,252 246,255,251 244,255,251 246,255,252 250,255,254 251,255,255 253,253,255 253,252,255 255,251,255 255,250,255 253,250,255 253,251,255 251,253,255 248,255,255 246,255,255 244,255,252 246,255,252 253,255,255 255,253,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 253,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,255 255,255,254 255,255,252 253,255,251 253,255,251 253,255,251 255,255,252 255,255,254 255,254,255 255,254,255 255,253,255 255,252,255 255,251,255 255,251,255 255,251,255 255,251,255 255,251,255 255,251,255 255,251,255 255,252,255 255,253,255 255,254,255 255,255,254 255,255,251 255,255,248 255,255,244 255,255,241 255,255,241 255,255,244 255,255,248 255,254,255 255,251,255 255,249,255 255,250,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,243,255 255,249,255 255,255,247 255,255,241 255,255,248 255,252,255 255,246,255 255,246,255 255,252,255 255,255,251 255,255,245 255,255,245 253,255,252 253,255,255 253,255,255 253,255,254 251,255,255 250,255,254 251,255,255 251,255,255 253,255,255 253,254,255 253,253,255 253,252,255 253,251,255 253,251,255 253,252,255 251,253,255 251,255,255 250,255,254 250,255,251 251,255,249 255,255,252 255,255,254 255,255,255 255,254,255 255,253,255 255,253,255 255,253,255 255,253,255 255,255,255 255,255,254 255,255,254 255,255,252 255,255,254 255,255,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,255 255,254,255 255,254,255 255,254,255 253,254,255 253,255,255 253,255,255 253,255,254 255,255,252 255,255,254 255,255,254 255,255,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,252 253,255,251 253,255,251 253,255,252 253,255,254 255,254,255 253,253,255 255,252,255 253,252,255 255,252,255 253,252,255 255,253,255 253,253,255 253,252,255 253,252,255 255,252,255 255,253,255 255,254,255 255,255,251 255,255,248 255,255,245 255,255,245 255,255,245 253,255,247 253,255,249 255,255,255 255,253,255 255,249,255 255,250,255 255,253,255 255,255,255 255,255,255 255,255,255 -255,245,255 255,251,255 255,255,240 255,255,234 255,255,244 255,255,255 255,246,255 255,246,255 255,253,255 255,255,249 255,255,244 255,255,245 253,255,254 253,255,255 253,255,255 253,255,255 255,254,255 255,253,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,255 253,255,255 253,253,255 253,252,255 253,252,255 253,253,255 253,255,255 253,255,254 253,255,251 255,255,248 255,255,247 255,255,248 255,255,251 255,255,254 255,254,255 255,253,255 255,252,255 255,253,255 255,254,255 255,255,254 255,255,252 255,255,252 255,255,252 253,255,254 255,255,255 255,255,255 255,255,252 255,255,254 255,255,255 255,254,255 255,253,255 255,253,255 253,253,255 253,255,255 253,255,255 253,255,254 253,255,252 251,255,254 253,255,255 251,255,255 253,254,255 253,253,255 255,252,255 255,253,255 255,254,255 255,255,254 253,255,251 253,255,249 253,255,249 253,255,251 253,255,254 251,255,255 253,254,255 251,254,255 253,254,255 253,255,255 253,255,255 251,255,255 250,254,255 250,253,255 251,252,255 255,252,255 255,253,255 255,255,254 255,255,251 255,255,249 255,255,251 253,255,251 251,255,251 251,255,252 255,255,252 255,254,255 255,251,255 255,251,255 255,253,255 255,255,255 255,255,255 255,255,255 -255,248,255 255,254,255 255,255,233 255,255,227 255,255,237 255,255,251 255,247,255 255,246,255 255,253,255 255,255,249 255,255,244 255,255,245 253,255,255 253,253,255 253,254,255 255,253,255 255,250,255 255,250,255 255,253,255 255,254,255 255,255,251 255,255,249 255,255,249 255,255,251 255,255,254 255,255,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,252 255,255,248 255,255,244 255,255,242 255,255,247 255,255,251 255,254,255 255,253,255 255,252,255 255,253,255 255,254,255 255,255,254 255,255,252 255,255,251 253,255,251 251,255,252 253,255,254 253,255,254 255,255,252 255,255,252 255,255,255 255,254,255 255,253,255 255,253,255 253,253,255 253,254,255 251,255,255 251,255,254 251,255,252 250,255,254 251,255,255 250,255,255 251,254,255 251,252,255 255,250,255 255,250,255 255,253,255 255,255,255 253,255,251 253,255,248 251,255,247 251,255,248 251,255,249 250,255,251 251,255,254 250,255,254 251,255,254 251,255,252 251,255,251 250,255,252 246,255,255 246,255,255 250,252,255 253,251,255 255,252,255 255,253,255 255,254,255 255,255,255 255,254,255 253,254,255 251,255,255 251,255,254 255,255,251 255,255,252 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,250,255 255,255,254 255,255,235 255,255,231 255,255,240 255,255,251 255,249,255 255,249,255 255,254,255 255,255,251 255,255,245 255,255,248 253,255,255 253,253,255 253,254,255 255,253,255 255,250,255 255,250,255 255,253,255 255,254,255 255,255,251 255,255,249 255,255,249 255,255,249 255,255,251 255,255,252 255,255,254 255,255,255 255,255,255 255,254,255 255,255,254 255,255,251 255,255,245 255,255,244 255,255,247 255,255,251 255,255,254 255,254,255 255,253,255 255,253,255 255,254,255 255,255,254 255,255,252 255,255,252 253,255,252 251,255,252 253,255,254 253,255,254 255,255,252 255,255,252 255,255,255 255,254,255 255,254,255 255,253,255 253,254,255 253,255,255 253,255,255 251,255,254 251,255,254 251,255,254 251,255,255 251,255,255 251,254,255 251,253,255 255,251,255 255,251,255 255,253,255 255,255,255 253,255,252 253,255,249 253,255,248 251,255,248 251,255,249 251,255,251 251,255,252 251,255,252 251,255,252 251,255,251 251,255,251 251,255,251 248,255,255 246,255,255 250,253,255 253,252,255 255,252,255 255,253,255 255,254,255 255,253,255 255,252,255 253,252,255 253,254,255 253,255,255 255,255,251 255,255,251 255,255,254 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,254,255 255,255,255 255,255,248 255,255,247 255,255,249 255,255,254 255,253,255 255,253,255 255,254,255 255,255,254 255,255,252 255,255,252 255,255,255 255,254,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,252 255,255,251 255,255,252 255,255,254 255,255,255 255,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,254 253,255,254 255,255,255 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,252 253,255,252 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,255 251,255,255 253,255,255 255,254,255 255,254,255 255,254,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/79_bged.txt b/ReCapcha/Test/bin/Debug/experiment/79_bged.txt deleted file mode 100644 index 74bfc39..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/79_bged.txt +++ /dev/null @@ -1,30 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 61,61,61 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 73,73,73 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 92,92,92 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 83,83,83 89,89,89 69,69,69 91,91,91 76,76,76 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 63,63,63 64,64,64 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 53,53,53 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 79,79,79 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 93,93,93 79,79,79 83,83,83 79,79,79 75,75,75 76,76,76 90,90,90 75,75,75 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 76,76,76 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 58,58,58 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 87,87,87 51,51,51 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 103,103,103 53,53,53 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 45,45,45 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 66,66,66 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 75,75,75 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 93,93,93 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 80,80,80 66,66,66 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 99,99,99 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 57,57,57 100,100,100 45,45,45 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 90,90,90 62,62,62 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 66,66,66 61,61,61 47,47,47 255,255,255 255,255,255 255,255,255 49,49,49 51,51,51 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 77,77,77 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 78,78,78 73,73,73 255,255,255 255,255,255 255,255,255 65,65,65 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 92,92,92 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 45,45,45 75,75,75 255,255,255 255,255,255 255,255,255 60,60,60 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 85,85,85 84,84,84 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 72,72,72 82,82,82 255,255,255 255,255,255 255,255,255 84,84,84 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 78,78,78 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 49,49,49 91,91,91 56,56,56 255,255,255 255,255,255 255,255,255 61,61,61 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 81,81,81 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 70,70,70 57,57,57 255,255,255 255,255,255 255,255,255 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 88,88,88 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 63,63,63 67,67,67 255,255,255 67,67,67 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 92,92,92 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 77,77,77 70,70,70 255,255,255 78,78,78 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 82,82,82 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 83,83,83 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 78,78,78 53,53,53 255,255,255 59,59,59 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 71,71,71 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 79,79,79 53,53,53 255,255,255 77,77,77 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 80,80,80 83,83,83 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 76,76,76 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 47,47,47 65,65,65 72,72,72 255,255,255 56,56,56 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 89,89,89 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 85,85,85 83,83,83 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 79,79,79 79,79,79 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 82,82,82 89,89,89 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 67,67,67 54,54,54 71,71,71 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 89,89,89 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 81,81,81 48,48,48 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 90,90,90 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 85,85,85 88,88,88 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 63,63,63 51,51,51 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 75,75,75 79,79,79 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 75,75,75 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 84,84,84 85,85,85 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 86,86,86 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 51,51,51 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 81,81,81 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 99,99,99 85,85,85 79,79,79 103,103,103 67,67,67 87,87,87 72,72,72 66,66,66 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 83,83,83 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 90,90,90 57,57,57 83,83,83 89,89,89 77,77,77 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 67,67,67 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 71,71,71 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/79_binaried.txt b/ReCapcha/Test/bin/Debug/experiment/79_binaried.txt deleted file mode 100644 index 397fa67..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/79_binaried.txt +++ /dev/null @@ -1,30 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/79_greied.txt b/ReCapcha/Test/bin/Debug/experiment/79_greied.txt deleted file mode 100644 index 50ddc37..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/79_greied.txt +++ /dev/null @@ -1,30 +0,0 @@ -221,221,221 220,220,220 222,222,222 222,222,222 214,214,214 206,206,206 210,210,210 220,220,220 225,225,225 214,214,214 220,220,220 223,223,223 220,220,220 211,211,211 201,201,201 208,208,208 220,220,220 220,220,220 225,225,225 210,210,210 221,221,221 220,220,220 223,223,223 209,209,209 205,205,205 229,229,229 223,223,223 188,188,188 186,186,186 219,219,219 231,231,231 215,215,215 218,218,218 225,225,225 218,218,218 213,213,213 217,217,217 229,229,229 198,198,198 225,225,225 217,217,217 228,228,228 220,220,220 217,217,217 228,228,228 220,220,220 215,215,215 228,228,228 216,216,216 222,222,222 207,207,207 204,204,204 205,205,205 222,222,222 201,201,201 186,186,186 180,180,180 202,202,202 180,180,180 167,167,167 200,200,200 192,192,192 215,215,215 216,216,216 223,223,223 217,217,217 200,200,200 233,233,233 215,215,215 215,215,215 227,227,227 210,210,210 223,223,223 225,225,225 222,222,222 228,228,228 213,213,213 224,224,224 206,206,206 215,215,215 219,219,219 219,219,219 218,218,218 219,219,219 221,221,221 222,222,222 221,221,221 220,220,220 223,223,223 222,222,222 -219,219,219 220,220,220 224,224,224 225,225,225 216,216,216 204,204,204 199,199,199 202,202,202 211,211,211 214,214,214 221,221,221 222,222,222 222,222,222 220,220,220 207,207,207 198,198,198 208,208,208 231,231,231 221,221,221 231,231,231 198,198,198 224,224,224 215,215,215 227,227,227 233,233,233 218,218,218 210,210,210 215,215,215 224,224,224 225,225,225 219,219,219 216,216,216 203,203,203 200,200,200 226,226,226 220,220,220 217,217,217 216,216,216 195,195,195 188,188,188 181,181,181 184,184,184 185,185,185 191,191,191 218,218,218 228,228,228 210,210,210 212,212,212 214,214,214 230,230,230 243,243,243 205,205,205 225,225,225 180,180,180 200,200,200 175,175,175 190,190,190 171,171,171 208,208,208 240,240,240 214,214,214 175,175,175 187,187,187 197,197,197 184,184,184 184,184,184 189,189,189 223,223,223 206,206,206 228,228,228 222,222,222 235,235,235 223,223,223 219,219,219 213,213,213 225,225,225 215,215,215 227,227,227 220,220,220 234,234,234 225,225,225 213,213,213 200,200,200 201,201,201 212,212,212 224,224,224 227,227,227 225,225,225 224,224,224 223,223,223 -218,218,218 218,218,218 221,221,221 226,226,226 224,224,224 218,218,218 213,213,213 213,213,213 206,206,206 219,219,219 223,223,223 220,220,220 222,222,222 226,226,226 221,221,221 207,207,207 201,201,201 203,203,203 220,220,220 186,186,186 202,202,202 190,190,190 224,224,224 225,225,225 212,212,212 190,190,190 190,190,190 218,218,218 232,232,232 219,219,219 211,211,211 218,218,218 209,209,209 188,188,188 226,226,226 219,219,219 219,219,219 216,216,216 226,226,226 205,205,205 205,205,205 217,217,217 231,231,231 199,199,199 184,184,184 186,186,186 177,177,177 201,201,201 182,182,182 208,208,208 219,219,219 244,244,244 218,218,218 224,224,224 229,229,229 214,214,214 219,219,219 196,196,196 183,183,183 176,176,176 179,179,179 208,208,208 221,221,221 220,220,220 217,217,217 234,234,234 228,228,228 213,213,213 206,206,206 237,237,237 181,181,181 187,187,187 224,224,224 221,221,221 214,214,214 225,225,225 216,216,216 215,215,215 206,206,206 210,210,210 218,218,218 220,220,220 218,218,218 209,209,209 199,199,199 199,199,199 208,208,208 218,218,218 216,216,216 218,218,218 -222,222,222 219,219,219 217,217,217 220,220,220 224,224,224 227,227,227 228,228,228 228,228,228 183,183,183 194,194,194 190,190,190 185,185,185 182,182,182 184,184,184 197,197,197 195,195,195 180,180,180 191,191,191 192,192,192 208,208,208 204,204,204 211,211,211 189,189,189 175,175,175 187,187,187 194,194,194 206,206,206 214,214,214 215,215,215 215,215,215 222,222,222 230,230,230 223,223,223 200,200,200 213,213,213 215,215,215 219,219,219 215,215,215 229,229,229 227,227,227 196,196,196 200,200,200 227,227,227 214,214,214 216,216,216 227,227,227 196,196,196 194,194,194 229,229,229 211,211,211 227,227,227 219,219,219 203,203,203 199,199,199 214,214,214 223,223,223 213,213,213 225,225,225 219,219,219 230,230,230 215,215,215 185,185,185 186,186,186 213,213,213 224,224,224 207,207,207 208,208,208 221,221,221 226,226,226 231,231,231 208,208,208 224,224,224 219,219,219 224,224,224 218,218,218 224,224,224 224,224,224 226,226,226 229,229,229 224,224,224 210,210,210 224,224,224 232,232,232 226,226,226 208,208,208 194,194,194 195,195,195 201,201,201 211,211,211 212,212,212 -227,227,227 223,223,223 218,218,218 216,216,216 218,218,218 220,220,220 218,218,218 214,214,214 215,215,215 224,224,224 214,214,214 218,218,218 206,206,206 191,191,191 214,214,214 225,225,225 234,234,234 217,217,217 184,184,184 181,181,181 180,180,180 204,204,204 202,202,202 203,203,203 193,193,193 207,207,207 212,212,212 199,199,199 190,190,190 196,196,196 211,211,211 219,219,219 220,220,220 216,216,216 196,196,196 216,216,216 222,222,222 214,214,214 201,201,201 222,222,222 213,213,213 210,210,210 228,228,228 220,220,220 220,220,220 232,232,232 213,213,213 207,207,207 193,193,193 183,183,183 216,216,216 231,231,231 223,223,223 237,237,237 194,194,194 223,223,223 232,232,232 231,231,231 215,215,215 227,227,227 201,201,201 186,186,186 225,225,225 196,196,196 201,201,201 213,213,213 240,240,240 234,234,234 210,210,210 205,205,205 242,242,242 210,210,210 218,218,218 227,227,227 217,217,217 212,212,212 213,213,213 212,212,212 229,229,229 217,217,217 222,222,222 218,218,218 217,217,217 221,221,221 226,226,226 224,224,224 214,214,214 204,204,204 199,199,199 198,198,198 -220,220,220 222,222,222 222,222,222 221,221,221 222,222,222 220,220,220 213,213,213 203,203,203 211,211,211 225,225,225 217,217,217 230,230,230 213,213,213 182,182,182 203,203,203 210,210,210 205,205,205 199,199,199 219,219,219 202,202,202 228,228,228 207,207,207 219,219,219 206,206,206 212,212,212 203,203,203 195,195,195 192,192,192 190,190,190 190,190,190 199,199,199 211,211,211 217,217,217 228,228,228 189,189,189 211,211,211 228,228,228 234,234,234 220,220,220 239,239,239 187,187,187 199,199,199 218,218,218 219,219,219 202,202,202 204,204,204 227,227,227 237,237,237 205,205,205 237,237,237 189,189,189 200,200,200 216,216,216 217,217,217 45,45,45 61,61,61 56,56,56 213,213,213 242,242,242 201,201,201 225,225,225 183,183,183 191,191,191 222,222,222 209,209,209 200,200,200 56,56,56 44,44,44 215,215,215 240,240,240 210,210,210 220,220,220 189,189,189 210,210,210 216,216,216 230,230,230 236,236,236 211,211,211 227,227,227 213,213,213 230,230,230 222,222,222 216,216,216 215,215,215 221,221,221 225,225,225 228,228,228 226,226,226 227,227,227 224,224,224 -215,215,215 221,221,221 224,224,224 223,223,223 223,223,223 225,225,225 221,221,221 213,213,213 194,194,194 218,218,218 211,211,211 226,226,226 216,216,216 190,190,190 209,209,209 200,200,200 197,197,197 208,208,208 195,195,195 218,218,218 197,197,197 223,223,223 216,216,216 233,233,233 227,227,227 213,213,213 207,207,207 214,214,214 218,218,218 216,216,216 218,218,218 226,226,226 218,218,218 229,229,229 201,201,201 200,200,200 217,217,217 232,232,232 232,232,232 202,202,202 205,205,205 206,206,206 201,201,201 227,227,227 216,216,216 199,199,199 224,224,224 208,208,208 233,233,233 152,152,152 196,196,196 193,193,193 182,182,182 212,212,212 228,228,228 62,62,62 73,73,73 67,67,67 217,217,217 243,243,243 206,206,206 179,179,179 219,219,219 189,189,189 228,228,228 70,70,70 57,57,57 207,207,207 227,227,227 209,209,209 211,211,211 223,223,223 207,207,207 209,209,209 208,208,208 224,224,224 198,198,198 103,103,103 92,92,92 77,77,77 211,211,211 218,218,218 223,223,223 221,221,221 214,214,214 212,212,212 217,217,217 223,223,223 214,214,214 214,214,214 -221,221,221 224,224,224 223,223,223 217,217,217 216,216,216 221,221,221 222,222,222 219,219,219 190,190,190 222,222,222 212,212,212 225,225,225 224,224,224 214,214,214 233,233,233 211,211,211 215,215,215 204,204,204 207,207,207 197,197,197 209,209,209 203,203,203 214,214,214 214,214,214 217,217,217 223,223,223 225,225,225 223,223,223 222,222,222 223,223,223 223,223,223 221,221,221 214,214,214 226,226,226 223,223,223 196,196,196 194,194,194 193,193,193 189,189,189 94,94,94 83,83,83 89,89,89 69,69,69 91,91,91 76,76,76 83,83,83 188,188,188 223,223,223 185,185,185 229,229,229 220,220,220 188,188,188 186,186,186 186,186,186 194,194,194 61,61,61 63,63,63 64,64,64 231,231,231 210,210,210 214,214,214 221,221,221 228,228,228 224,224,224 202,202,202 53,53,53 67,67,67 217,217,217 191,191,191 229,229,229 212,212,212 219,219,219 222,222,222 201,201,201 193,193,193 220,220,220 192,192,192 77,77,77 79,79,79 88,88,88 190,190,190 196,196,196 209,209,209 223,223,223 229,229,229 223,223,223 207,207,207 194,194,194 221,221,221 222,222,222 -222,222,222 219,219,219 228,228,228 226,226,226 204,204,204 232,232,232 212,212,212 216,216,216 226,226,226 192,192,192 217,217,217 220,220,220 186,186,186 186,186,186 204,204,204 182,182,182 180,180,180 192,192,192 197,197,197 195,195,195 194,194,194 219,219,219 194,194,194 217,217,217 214,214,214 194,194,194 225,225,225 214,214,214 227,227,227 217,217,217 209,209,209 222,222,222 218,218,218 226,226,226 214,214,214 225,225,225 202,202,202 81,81,81 93,93,93 79,79,79 83,83,83 79,79,79 75,75,75 76,76,76 90,90,90 75,75,75 57,57,57 198,198,198 185,185,185 194,194,194 212,212,212 214,214,214 212,212,212 195,195,195 227,227,227 60,60,60 76,76,76 63,63,63 197,197,197 231,231,231 230,230,230 206,206,206 198,198,198 220,220,220 235,235,235 58,58,58 54,54,54 228,228,228 214,214,214 222,222,222 213,213,213 222,222,222 202,202,202 167,167,167 188,188,188 218,218,218 216,216,216 194,194,194 215,215,215 221,221,221 224,224,224 183,183,183 208,208,208 214,214,214 217,217,217 213,213,213 222,222,222 220,220,220 205,205,205 214,214,214 -227,227,227 221,221,221 224,224,224 217,217,217 194,194,194 222,222,222 216,216,216 228,228,228 180,180,180 176,176,176 243,243,243 214,214,214 71,71,71 87,87,87 51,51,51 230,230,230 233,233,233 213,213,213 211,211,211 232,232,232 184,184,184 191,191,191 78,78,78 62,62,62 231,231,231 213,213,213 185,185,185 196,196,196 213,213,213 233,233,233 226,226,226 210,210,210 219,219,219 226,226,226 239,239,239 206,206,206 79,79,79 103,103,103 53,53,53 92,92,92 225,225,225 194,194,194 225,225,225 188,188,188 215,215,215 229,229,229 95,95,95 196,196,196 217,217,217 207,207,207 204,204,204 244,244,244 193,193,193 179,179,179 203,203,203 222,222,222 60,60,60 45,45,45 78,78,78 189,189,189 164,164,164 224,224,224 224,224,224 195,195,195 37,37,37 66,66,66 199,199,199 199,199,199 222,222,222 216,216,216 222,222,222 210,210,210 166,166,166 233,233,233 220,220,220 194,194,194 240,240,240 215,215,215 208,208,208 224,224,224 217,217,217 193,193,193 198,198,198 197,197,197 230,230,230 222,222,222 214,214,214 227,227,227 194,194,194 198,198,198 -218,218,218 217,217,217 225,225,225 219,219,219 196,196,196 212,212,212 213,213,213 225,225,225 209,209,209 222,222,222 160,160,160 229,229,229 193,193,193 64,64,64 75,75,75 67,67,67 234,234,234 212,212,212 243,243,243 204,204,204 215,215,215 68,68,68 62,62,62 189,189,189 188,188,188 227,227,227 213,213,213 203,203,203 173,173,173 171,171,171 215,215,215 226,226,226 231,231,231 202,202,202 227,227,227 82,82,82 93,93,93 70,70,70 236,236,236 227,227,227 222,222,222 193,193,193 207,207,207 235,235,235 185,185,185 179,179,179 198,198,198 175,175,175 179,179,179 212,212,212 209,209,209 199,199,199 170,170,170 217,217,217 186,186,186 216,216,216 76,76,76 80,80,80 66,66,66 200,200,200 235,235,235 206,206,206 225,225,225 221,221,221 65,65,65 84,84,84 219,219,219 228,228,228 203,203,203 217,217,217 208,208,208 216,216,216 197,197,197 215,215,215 218,218,218 209,209,209 170,170,170 88,88,88 99,99,99 72,72,72 235,235,235 189,189,189 194,194,194 183,183,183 187,187,187 195,195,195 218,218,218 224,224,224 207,207,207 212,212,212 -219,219,219 218,218,218 224,224,224 218,218,218 195,195,195 197,197,197 207,207,207 219,219,219 177,177,177 222,222,222 206,206,206 234,234,234 212,212,212 57,57,57 100,100,100 45,45,45 206,206,206 222,222,222 212,212,212 233,233,233 237,237,237 62,62,62 78,78,78 190,190,190 211,211,211 206,206,206 189,189,189 183,183,183 200,200,200 192,192,192 201,201,201 174,174,174 206,206,206 224,224,224 90,90,90 90,90,90 62,62,62 91,91,91 234,234,234 211,211,211 217,217,217 183,183,183 197,197,197 210,210,210 231,231,231 227,227,227 220,220,220 208,208,208 222,222,222 201,201,201 196,196,196 172,172,172 200,200,200 208,208,208 179,179,179 194,194,194 45,45,45 66,66,66 61,61,61 47,47,47 232,232,232 220,220,220 239,239,239 49,49,49 51,51,51 63,63,63 204,204,204 238,238,238 216,216,216 178,178,178 196,196,196 229,229,229 185,185,185 217,217,217 209,209,209 231,231,231 226,226,226 82,82,82 77,77,77 98,98,98 185,185,185 207,207,207 209,209,209 186,186,186 222,222,222 194,194,194 167,167,167 204,204,204 184,184,184 193,193,193 -226,226,226 219,219,219 219,219,219 212,212,212 193,193,193 184,184,184 204,204,204 214,214,214 191,191,191 212,212,212 210,210,210 219,219,219 211,211,211 197,197,197 79,79,79 78,78,78 73,73,73 230,230,230 229,229,229 204,204,204 65,65,65 54,54,54 216,216,216 225,225,225 197,197,197 204,204,204 221,221,221 220,220,220 193,193,193 189,189,189 177,177,177 201,201,201 194,194,194 199,199,199 62,62,62 92,92,92 94,94,94 192,192,192 215,215,215 224,224,224 221,221,221 198,198,198 190,190,190 177,177,177 223,223,223 214,214,214 217,217,217 191,191,191 229,229,229 202,202,202 214,214,214 207,207,207 218,218,218 175,175,175 191,191,191 194,194,194 239,239,239 74,74,74 45,45,45 75,75,75 227,227,227 218,218,218 233,233,233 60,60,60 62,62,62 189,189,189 200,200,200 233,233,233 201,201,201 241,241,241 183,183,183 177,177,177 184,184,184 226,226,226 221,221,221 220,220,220 214,214,214 85,85,85 84,84,84 77,77,77 225,225,225 197,197,197 208,208,208 189,189,189 189,189,189 193,193,193 206,206,206 207,207,207 199,199,199 213,213,213 -212,212,212 207,207,207 215,215,215 221,221,221 213,213,213 185,185,185 198,198,198 193,193,193 186,186,186 241,241,241 214,214,214 227,227,227 234,234,234 227,227,227 52,52,52 72,72,72 82,82,82 207,207,207 213,213,213 237,237,237 84,84,84 80,80,80 209,209,209 227,227,227 214,214,214 207,207,207 203,203,203 229,229,229 190,190,190 221,221,221 178,178,178 213,213,213 225,225,225 233,233,233 74,74,74 78,78,78 72,72,72 225,225,225 190,190,190 212,212,212 222,222,222 182,182,182 221,221,221 189,189,189 178,178,178 226,226,226 233,233,233 222,222,222 176,176,176 222,222,222 232,232,232 221,221,221 186,186,186 183,183,183 217,217,217 181,181,181 178,178,178 49,49,49 91,91,91 56,56,56 219,219,219 193,193,193 189,189,189 61,61,61 69,69,69 182,182,182 225,225,225 182,182,182 187,187,187 182,182,182 219,219,219 188,188,188 181,181,181 226,226,226 213,213,213 191,191,191 215,215,215 93,93,93 81,81,81 96,96,96 216,216,216 215,215,215 205,205,205 185,185,185 230,230,230 220,220,220 185,185,185 186,186,186 192,192,192 208,208,208 -201,201,201 195,195,195 204,204,204 220,220,220 224,224,224 190,190,190 203,203,203 188,188,188 182,182,182 210,210,210 229,229,229 190,190,190 196,196,196 184,184,184 77,77,77 70,70,70 57,57,57 200,200,200 207,207,207 174,174,174 63,63,63 221,221,221 219,219,219 221,221,221 223,223,223 212,212,212 198,198,198 206,206,206 200,200,200 216,216,216 203,203,203 210,210,210 209,209,209 227,227,227 90,90,90 88,88,88 100,100,100 225,225,225 229,229,229 207,207,207 189,189,189 223,223,223 167,167,167 217,217,217 196,196,196 192,192,192 198,198,198 215,215,215 200,200,200 226,226,226 211,211,211 220,220,220 187,187,187 184,184,184 211,211,211 214,214,214 207,207,207 205,205,205 55,55,55 63,63,63 67,67,67 223,223,223 67,67,67 56,56,56 205,205,205 190,190,190 197,197,197 225,225,225 214,214,214 210,210,210 207,207,207 171,171,171 226,226,226 179,179,179 223,223,223 231,231,231 189,189,189 72,72,72 92,92,92 74,74,74 234,234,234 192,192,192 199,199,199 184,184,184 194,194,194 213,213,213 220,220,220 194,194,194 186,186,186 192,192,192 -215,215,215 194,194,194 186,186,186 196,196,196 209,209,209 186,186,186 219,219,219 212,212,212 192,192,192 201,201,201 203,203,203 229,229,229 222,222,222 230,230,230 224,224,224 77,77,77 77,77,77 70,70,70 189,189,189 78,78,78 69,69,69 220,220,220 224,224,224 218,218,218 224,224,224 218,218,218 220,220,220 182,182,182 224,224,224 189,189,189 235,235,235 202,202,202 200,200,200 183,183,183 79,79,79 82,82,82 87,87,87 223,223,223 233,233,233 215,215,215 229,229,229 172,172,172 193,193,193 229,229,229 54,54,54 83,83,83 79,79,79 199,199,199 183,183,183 214,214,214 222,222,222 226,226,226 219,219,219 189,189,189 182,182,182 188,188,188 188,188,188 199,199,199 62,62,62 78,78,78 53,53,53 214,214,214 59,59,59 57,57,57 232,232,232 211,211,211 197,197,197 185,185,185 217,217,217 226,226,226 209,209,209 223,223,223 191,191,191 189,189,189 224,224,224 212,212,212 219,219,219 91,91,91 71,71,71 92,92,92 185,185,185 177,177,177 203,203,203 194,194,194 210,210,210 222,222,222 228,228,228 216,216,216 191,191,191 189,189,189 -213,213,213 221,221,221 231,231,231 183,183,183 200,200,200 184,184,184 217,217,217 223,223,223 185,185,185 192,192,192 194,194,194 185,185,185 208,208,208 170,170,170 234,234,234 64,64,64 79,79,79 53,53,53 227,227,227 77,77,77 57,57,57 198,198,198 226,226,226 217,217,217 213,213,213 237,237,237 194,194,194 238,238,238 215,215,215 183,183,183 219,219,219 222,222,222 220,220,220 214,214,214 80,80,80 83,83,83 86,86,86 223,223,223 238,238,238 220,220,220 227,227,227 218,218,218 191,191,191 215,215,215 83,83,83 76,76,76 96,96,96 220,220,220 196,196,196 194,194,194 220,220,220 233,233,233 220,220,220 188,188,188 181,181,181 229,229,229 220,220,220 210,210,210 47,47,47 65,65,65 72,72,72 220,220,220 56,56,56 60,60,60 199,199,199 190,190,190 188,188,188 192,192,192 189,189,189 184,184,184 186,186,186 194,194,194 188,188,188 193,193,193 192,192,192 191,191,191 187,187,187 88,88,88 89,89,89 73,73,73 215,215,215 220,220,220 224,224,224 230,230,230 184,184,184 183,183,183 236,236,236 208,208,208 224,224,224 192,192,192 -228,228,228 219,219,219 216,216,216 220,220,220 215,215,215 186,186,186 187,187,187 216,216,216 187,187,187 212,212,212 197,197,197 214,214,214 209,209,209 236,236,236 181,181,181 191,191,191 62,62,62 85,85,85 83,83,83 57,57,57 203,203,203 216,216,216 219,219,219 217,217,217 221,221,221 223,223,223 194,194,194 217,217,217 223,223,223 195,195,195 224,224,224 213,213,213 224,224,224 229,229,229 82,82,82 79,79,79 79,79,79 101,101,101 205,205,205 230,230,230 220,220,220 228,228,228 215,215,215 186,186,186 82,82,82 82,82,82 89,89,89 226,226,226 187,187,187 204,204,204 196,196,196 215,215,215 202,202,202 226,226,226 194,194,194 223,223,223 230,230,230 216,216,216 194,194,194 67,67,67 54,54,54 71,71,71 61,61,61 234,234,234 225,225,225 223,223,223 223,223,223 214,214,214 199,199,199 191,191,191 204,204,204 225,225,225 212,212,212 199,199,199 197,197,197 196,196,196 192,192,192 81,81,81 89,89,89 90,90,90 205,205,205 173,173,173 227,227,227 216,216,216 210,210,210 229,229,229 193,193,193 222,222,222 221,221,221 194,194,194 -207,207,207 232,232,232 216,216,216 217,217,217 198,198,198 219,219,219 193,193,193 191,191,191 196,196,196 214,214,214 222,222,222 197,197,197 222,222,222 215,215,215 229,229,229 220,220,220 83,83,83 81,81,81 48,48,48 80,80,80 181,181,181 186,186,186 191,191,191 196,196,196 178,178,178 184,184,184 191,191,191 190,190,190 208,208,208 190,190,190 224,224,224 226,226,226 219,219,219 237,237,237 217,217,217 62,62,62 90,90,90 86,86,86 237,237,237 237,237,237 228,228,228 223,223,223 242,242,242 219,219,219 85,85,85 88,88,88 77,77,77 197,197,197 197,197,197 225,225,225 217,217,217 227,227,227 221,221,221 232,232,232 175,175,175 183,183,183 231,231,231 228,228,228 226,226,226 54,54,54 63,63,63 51,51,51 71,71,71 218,218,218 225,225,225 226,226,226 225,225,225 215,215,215 198,198,198 190,190,190 197,197,197 210,210,210 223,223,223 200,200,200 209,209,209 209,209,209 207,207,207 75,75,75 79,79,79 88,88,88 178,178,178 205,205,205 180,180,180 214,214,214 238,238,238 214,214,214 217,217,217 199,199,199 208,208,208 190,190,190 -222,222,222 215,215,215 191,191,191 221,221,221 208,208,208 208,208,208 178,178,178 197,197,197 188,188,188 225,225,225 211,211,211 222,222,222 185,185,185 190,190,190 226,226,226 211,211,211 220,220,220 65,65,65 75,75,75 230,230,230 223,223,223 206,206,206 183,183,183 186,186,186 221,221,221 220,220,220 226,226,226 200,200,200 193,193,193 179,179,179 183,183,183 186,186,186 223,223,223 214,214,214 234,234,234 248,248,248 70,70,70 84,84,84 85,85,85 65,65,65 214,214,214 200,200,200 204,204,204 227,227,227 91,91,91 86,86,86 76,76,76 191,191,191 183,183,183 186,186,186 192,192,192 179,179,179 214,214,214 204,204,204 198,198,198 230,230,230 151,151,151 244,244,244 216,216,216 226,226,226 59,59,59 51,51,51 52,52,52 235,235,235 225,225,225 221,221,221 219,219,219 220,220,220 220,220,220 214,214,214 201,201,201 189,189,189 210,210,210 196,196,196 227,227,227 225,225,225 225,225,225 89,89,89 81,81,81 83,83,83 196,196,196 211,211,211 204,204,204 191,191,191 210,210,210 226,226,226 209,209,209 191,191,191 210,210,210 207,207,207 -230,230,230 215,215,215 198,198,198 210,210,210 214,214,214 200,200,200 179,179,179 186,186,186 185,185,185 197,197,197 224,224,224 217,217,217 217,217,217 182,182,182 188,188,188 230,230,230 226,226,226 77,77,77 87,87,87 221,221,221 210,210,210 189,189,189 205,205,205 206,206,206 194,194,194 187,187,187 184,184,184 188,188,188 193,193,193 220,220,220 201,201,201 198,198,198 200,200,200 220,220,220 210,210,210 221,221,221 221,221,221 89,89,89 99,99,99 85,85,85 79,79,79 103,103,103 67,67,67 87,87,87 72,72,72 66,66,66 101,101,101 227,227,227 231,231,231 217,217,217 214,214,214 179,179,179 202,202,202 180,180,180 173,173,173 191,191,191 227,227,227 211,211,211 211,211,211 230,230,230 223,223,223 192,192,192 193,193,193 202,202,202 218,218,218 218,218,218 218,218,218 222,222,222 230,230,230 229,229,229 212,212,212 190,190,190 210,210,210 205,205,205 233,233,233 216,216,216 208,208,208 97,97,97 83,83,83 79,79,79 217,217,217 218,218,218 213,213,213 197,197,197 189,189,189 207,207,207 216,216,216 195,195,195 185,185,185 194,194,194 -212,212,212 223,223,223 219,219,219 192,192,192 213,213,213 217,217,217 208,208,208 182,182,182 184,184,184 193,193,193 180,180,180 227,227,227 220,220,220 227,227,227 209,209,209 176,176,176 72,72,72 62,62,62 216,216,216 230,230,230 225,225,225 219,219,219 212,212,212 185,185,185 189,189,189 192,192,192 185,185,185 192,192,192 179,179,179 197,197,197 176,176,176 181,181,181 189,189,189 191,191,191 235,235,235 237,237,237 218,218,218 196,196,196 200,200,200 91,91,91 90,90,90 57,57,57 83,83,83 89,89,89 77,77,77 92,92,92 217,217,217 210,210,210 199,199,199 203,203,203 204,204,204 200,200,200 207,207,207 227,227,227 198,198,198 187,187,187 169,169,169 186,186,186 228,228,228 220,220,220 183,183,183 217,217,217 203,203,203 202,202,202 204,204,204 217,217,217 221,221,221 216,216,216 214,214,214 220,220,220 218,218,218 210,210,210 195,195,195 200,200,200 226,226,226 222,222,222 236,236,236 194,194,194 206,206,206 223,223,223 229,229,229 193,193,193 223,223,223 211,211,211 193,193,193 208,208,208 197,197,197 220,220,220 193,193,193 214,214,214 -223,223,223 207,207,207 202,202,202 202,202,202 223,223,223 209,209,209 212,212,212 222,222,222 200,200,200 194,194,194 184,184,184 182,182,182 232,232,232 214,214,214 208,208,208 77,77,77 67,67,67 83,83,83 231,231,231 222,222,222 224,224,224 226,226,226 196,196,196 202,202,202 193,193,193 212,212,212 220,220,220 219,219,219 196,196,196 182,182,182 188,188,188 201,201,201 221,221,221 192,192,192 221,221,221 233,233,233 202,202,202 247,247,247 234,234,234 217,217,217 206,206,206 237,237,237 210,210,210 167,167,167 212,212,212 185,185,185 192,192,192 218,218,218 197,197,197 181,181,181 189,189,189 184,184,184 185,185,185 215,215,215 217,217,217 211,211,211 198,198,198 182,182,182 199,199,199 212,212,212 218,218,218 202,202,202 180,180,180 204,204,204 203,203,203 224,224,224 231,231,231 218,218,218 210,210,210 218,218,218 227,227,227 227,227,227 216,216,216 212,212,212 218,218,218 214,214,214 212,212,212 192,192,192 195,195,195 222,222,222 211,211,211 231,231,231 185,185,185 222,222,222 226,226,226 181,181,181 219,219,219 216,216,216 185,185,185 216,216,216 -222,222,222 231,231,231 211,211,211 183,183,183 193,193,193 220,220,220 227,227,227 220,220,220 206,206,206 226,226,226 191,191,191 188,188,188 192,192,192 225,225,225 64,64,64 71,71,71 68,68,68 220,220,220 218,218,218 223,223,223 224,224,224 222,222,222 219,219,219 223,223,223 185,185,185 198,198,198 213,213,213 215,215,215 219,219,219 189,189,189 214,214,214 216,216,216 189,189,189 197,197,197 211,211,211 225,225,225 236,236,236 200,200,200 235,235,235 222,222,222 235,235,235 214,214,214 214,214,214 229,229,229 187,187,187 204,204,204 181,181,181 182,182,182 222,222,222 183,183,183 230,230,230 217,217,217 219,219,219 190,190,190 217,217,217 218,218,218 178,178,178 236,236,236 170,170,170 196,196,196 191,191,191 190,190,190 181,181,181 193,193,193 196,196,196 216,216,216 221,221,221 208,208,208 203,203,203 213,213,213 218,218,218 213,213,213 220,220,220 214,214,214 217,217,217 226,226,226 216,216,216 197,197,197 186,186,186 218,218,218 218,218,218 222,222,222 216,216,216 192,192,192 221,221,221 223,223,223 184,184,184 223,223,223 188,188,188 222,222,222 -226,226,226 220,220,220 213,213,213 188,188,188 200,200,200 211,211,211 226,226,226 214,214,214 221,221,221 220,220,220 222,222,222 192,192,192 192,192,192 187,187,187 215,215,215 225,225,225 213,213,213 228,228,228 227,227,227 223,223,223 228,228,228 228,228,228 222,222,222 220,220,220 203,203,203 200,200,200 208,208,208 217,217,217 209,209,209 193,193,193 194,194,194 211,211,211 185,185,185 228,228,228 217,217,217 216,216,216 225,225,225 220,220,220 225,225,225 217,217,217 227,227,227 216,216,216 224,224,224 217,217,217 217,217,217 225,225,225 194,194,194 189,189,189 186,186,186 198,198,198 196,196,196 191,191,191 189,189,189 187,187,187 183,183,183 192,192,192 187,187,187 189,189,189 184,184,184 194,194,194 214,214,214 200,200,200 180,180,180 189,189,189 215,215,215 192,192,192 219,219,219 227,227,227 224,224,224 176,176,176 229,229,229 212,212,212 212,212,212 210,210,210 210,210,210 207,207,207 227,227,227 191,191,191 205,205,205 205,205,205 211,211,211 223,223,223 228,228,228 214,214,214 191,191,191 215,215,215 220,220,220 194,194,194 198,198,198 213,213,213 -209,209,209 216,216,216 233,233,233 222,222,222 179,179,179 193,193,193 222,222,222 222,222,222 223,223,223 221,221,221 223,223,223 214,214,214 215,215,215 207,207,207 212,212,212 213,213,213 230,230,230 229,229,229 210,210,210 192,192,192 193,193,193 200,200,200 208,208,208 221,221,221 208,208,208 203,203,203 208,208,208 221,221,221 224,224,224 211,211,211 199,199,199 195,195,195 187,187,187 225,225,225 219,219,219 215,215,215 223,223,223 218,218,218 224,224,224 218,218,218 227,227,227 216,216,216 224,224,224 218,218,218 220,220,220 230,230,230 211,211,211 212,212,212 214,214,214 201,201,201 179,179,179 184,184,184 214,214,214 224,224,224 204,204,204 186,186,186 192,192,192 196,196,196 188,188,188 185,185,185 190,190,190 182,182,182 182,182,182 204,204,204 195,195,195 194,194,194 212,212,212 206,206,206 228,228,228 189,189,189 214,214,214 220,220,220 215,215,215 220,220,220 197,197,197 223,223,223 222,222,222 215,215,215 199,199,199 201,201,201 213,213,213 194,194,194 215,215,215 214,214,214 215,215,215 197,197,197 218,218,218 216,216,216 189,189,189 189,189,189 -200,200,200 227,227,227 216,216,216 212,212,212 200,200,200 207,207,207 197,197,197 217,217,217 214,214,214 207,207,207 203,203,203 218,218,218 218,218,218 215,215,215 201,201,201 199,199,199 211,211,211 220,220,220 221,221,221 221,221,221 221,221,221 207,207,207 193,193,193 195,195,195 221,221,221 211,211,211 204,204,204 211,211,211 221,221,221 215,215,215 192,192,192 171,171,171 189,189,189 221,221,221 219,219,219 216,216,216 218,218,218 215,215,215 220,220,220 220,220,220 221,221,221 213,213,213 221,221,221 212,212,212 215,215,215 220,220,220 217,217,217 225,225,225 224,224,224 216,216,216 198,198,198 190,190,190 212,212,212 214,214,214 201,201,201 188,188,188 213,213,213 226,226,226 224,224,224 211,211,211 199,199,199 187,187,187 191,191,191 213,213,213 186,186,186 202,202,202 211,211,211 189,189,189 225,225,225 201,201,201 191,191,191 216,216,216 219,219,219 220,220,220 185,185,185 215,215,215 219,219,219 225,225,225 206,206,206 202,202,202 211,211,211 199,199,199 194,194,194 233,233,233 203,203,203 205,205,205 200,200,200 225,225,225 215,215,215 196,196,196 -221,221,221 191,191,191 205,205,205 219,219,219 198,198,198 209,209,209 221,221,221 190,190,190 225,225,225 213,213,213 199,199,199 226,226,226 224,224,224 230,230,230 215,215,215 221,221,221 220,220,220 225,225,225 223,223,223 225,225,225 226,226,226 215,215,215 209,209,209 219,219,219 194,194,194 188,188,188 182,182,182 187,187,187 207,207,207 224,224,224 217,217,217 201,201,201 194,194,194 214,214,214 220,220,220 218,218,218 215,215,215 214,214,214 219,219,219 220,220,220 219,219,219 214,214,214 221,221,221 209,209,209 210,210,210 203,203,203 212,212,212 221,221,221 219,219,219 227,227,227 223,223,223 198,198,198 202,202,202 194,194,194 198,198,198 200,200,200 196,196,196 216,216,216 228,228,228 222,222,222 209,209,209 196,196,196 187,187,187 189,189,189 200,200,200 210,210,210 218,218,218 191,191,191 211,211,211 209,209,209 180,180,180 197,197,197 222,222,222 212,212,212 188,188,188 193,193,193 222,222,222 219,219,219 223,223,223 213,213,213 217,217,217 209,209,209 229,229,229 203,203,203 216,216,216 188,188,188 208,208,208 200,200,200 223,223,223 198,198,198 -200,200,200 208,208,208 220,220,220 197,197,197 226,226,226 192,192,192 203,203,203 221,221,221 222,222,222 210,210,210 195,195,195 219,219,219 214,214,214 222,222,222 213,213,213 225,225,225 218,218,218 221,221,221 216,216,216 212,212,212 216,216,216 215,215,215 219,219,219 234,234,234 223,223,223 222,222,222 211,211,211 197,197,197 194,194,194 200,200,200 197,197,197 187,187,187 202,202,202 208,208,208 221,221,221 220,220,220 214,214,214 216,216,216 218,218,218 221,221,221 223,223,223 221,221,221 229,229,229 214,214,214 216,216,216 194,194,194 212,212,212 219,219,219 221,221,221 221,221,221 217,217,217 193,193,193 218,218,218 216,216,216 222,222,222 214,214,214 177,177,177 191,191,191 204,204,204 208,208,208 209,209,209 213,213,213 202,202,202 183,183,183 217,217,217 207,207,207 219,219,219 207,207,207 194,194,194 216,216,216 194,194,194 184,184,184 215,215,215 216,216,216 193,193,193 197,197,197 215,215,215 218,218,218 222,222,222 216,216,216 216,216,216 236,236,236 218,218,218 225,225,225 190,190,190 209,209,209 190,190,190 199,199,199 210,210,210 192,192,192 -216,216,216 184,184,184 234,234,234 218,218,218 217,217,217 181,181,181 232,232,232 222,222,222 195,195,195 190,190,190 185,185,185 196,196,196 192,192,192 192,192,192 187,187,187 193,193,193 191,191,191 211,211,211 221,221,221 223,223,223 227,227,227 221,221,221 213,213,213 214,214,214 206,206,206 216,216,216 220,220,220 215,215,215 213,213,213 219,219,219 222,222,222 223,223,223 210,210,210 201,201,201 218,218,218 220,220,220 214,214,214 220,220,220 217,217,217 221,221,221 221,221,221 221,221,221 229,229,229 217,217,217 223,223,223 189,189,189 215,215,215 217,217,217 220,220,220 218,218,218 217,217,217 190,190,190 224,224,224 222,222,222 233,233,233 220,220,220 194,194,194 193,193,193 193,193,193 191,191,191 200,200,200 224,224,224 222,222,222 193,193,193 223,223,223 201,201,201 208,208,208 221,221,221 186,186,186 223,223,223 217,217,217 186,186,186 194,194,194 222,222,222 187,187,187 218,218,218 195,195,195 220,220,220 196,196,196 197,197,197 223,223,223 217,217,217 228,228,228 210,210,210 225,225,225 186,186,186 198,198,198 211,211,211 200,200,200 193,193,193 diff --git a/ReCapcha/Test/bin/Debug/experiment/79_noised.txt b/ReCapcha/Test/bin/Debug/experiment/79_noised.txt deleted file mode 100644 index 74bfc39..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/79_noised.txt +++ /dev/null @@ -1,30 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 61,61,61 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 56,56,56 44,44,44 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 73,73,73 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 103,103,103 92,92,92 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 94,94,94 83,83,83 89,89,89 69,69,69 91,91,91 76,76,76 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 61,61,61 63,63,63 64,64,64 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 53,53,53 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 79,79,79 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 93,93,93 79,79,79 83,83,83 79,79,79 75,75,75 76,76,76 90,90,90 75,75,75 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 76,76,76 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 58,58,58 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 71,71,71 87,87,87 51,51,51 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 78,78,78 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 103,103,103 53,53,53 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 95,95,95 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 60,60,60 45,45,45 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 37,37,37 66,66,66 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 75,75,75 67,67,67 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 68,68,68 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 93,93,93 70,70,70 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 76,76,76 80,80,80 66,66,66 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 84,84,84 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 99,99,99 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 57,57,57 100,100,100 45,45,45 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 78,78,78 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 90,90,90 62,62,62 91,91,91 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 45,45,45 66,66,66 61,61,61 47,47,47 255,255,255 255,255,255 255,255,255 49,49,49 51,51,51 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 77,77,77 98,98,98 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 78,78,78 73,73,73 255,255,255 255,255,255 255,255,255 65,65,65 54,54,54 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 92,92,92 94,94,94 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 45,45,45 75,75,75 255,255,255 255,255,255 255,255,255 60,60,60 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 85,85,85 84,84,84 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 52,52,52 72,72,72 82,82,82 255,255,255 255,255,255 255,255,255 84,84,84 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 74,74,74 78,78,78 72,72,72 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 49,49,49 91,91,91 56,56,56 255,255,255 255,255,255 255,255,255 61,61,61 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 93,93,93 81,81,81 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 70,70,70 57,57,57 255,255,255 255,255,255 255,255,255 63,63,63 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 90,90,90 88,88,88 100,100,100 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 55,55,55 63,63,63 67,67,67 255,255,255 67,67,67 56,56,56 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 92,92,92 74,74,74 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 77,77,77 70,70,70 255,255,255 78,78,78 69,69,69 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 79,79,79 82,82,82 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 83,83,83 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 78,78,78 53,53,53 255,255,255 59,59,59 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 71,71,71 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 79,79,79 53,53,53 255,255,255 77,77,77 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 80,80,80 83,83,83 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 76,76,76 96,96,96 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 47,47,47 65,65,65 72,72,72 255,255,255 56,56,56 60,60,60 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 88,88,88 89,89,89 73,73,73 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 85,85,85 83,83,83 57,57,57 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 79,79,79 79,79,79 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 82,82,82 82,82,82 89,89,89 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 67,67,67 54,54,54 71,71,71 61,61,61 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 81,81,81 89,89,89 90,90,90 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 83,83,83 81,81,81 48,48,48 80,80,80 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 62,62,62 90,90,90 86,86,86 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 85,85,85 88,88,88 77,77,77 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 54,54,54 63,63,63 51,51,51 71,71,71 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 75,75,75 79,79,79 88,88,88 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 65,65,65 75,75,75 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 70,70,70 84,84,84 85,85,85 65,65,65 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 86,86,86 76,76,76 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 59,59,59 51,51,51 52,52,52 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 81,81,81 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 87,87,87 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 89,89,89 99,99,99 85,85,85 79,79,79 103,103,103 67,67,67 87,87,87 72,72,72 66,66,66 101,101,101 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 97,97,97 83,83,83 79,79,79 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 72,72,72 62,62,62 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 91,91,91 90,90,90 57,57,57 83,83,83 89,89,89 77,77,77 92,92,92 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 77,77,77 67,67,67 83,83,83 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 64,64,64 71,71,71 68,68,68 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/79_original.txt b/ReCapcha/Test/bin/Debug/experiment/79_original.txt deleted file mode 100644 index 4d22783..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/79_original.txt +++ /dev/null @@ -1,30 +0,0 @@ -212,206,247 211,205,246 214,206,247 214,206,247 206,198,238 198,190,230 202,194,234 212,204,244 218,211,248 207,200,237 211,207,243 214,210,246 210,209,243 201,200,234 189,190,224 197,199,230 210,211,239 211,212,238 215,216,244 200,201,229 213,211,240 212,210,239 215,213,243 201,199,229 197,194,226 221,218,250 216,210,245 181,175,210 179,172,209 212,205,242 224,217,254 208,201,236 213,204,237 219,213,244 209,205,240 199,203,238 200,207,246 212,222,255 176,187,231 206,215,255 200,203,248 215,214,255 209,204,249 208,202,243 220,212,252 211,207,242 207,204,236 215,220,251 194,210,246 206,211,250 211,183,229 214,176,224 207,182,226 211,207,248 173,198,232 154,188,218 154,177,209 185,196,226 172,170,199 162,158,183 195,192,214 187,185,204 215,206,226 211,208,230 209,214,247 199,208,245 183,192,226 220,225,255 204,206,237 206,202,237 219,211,251 203,193,236 215,202,254 217,203,255 213,199,255 220,209,255 201,195,244 210,209,253 193,194,232 202,204,239 210,204,245 211,203,244 210,202,243 211,203,244 213,205,246 214,206,247 213,205,246 212,204,245 215,207,248 214,206,247 -210,204,245 211,205,246 216,208,249 217,209,250 208,200,240 196,188,228 191,183,223 194,186,226 204,197,234 207,200,237 212,208,244 213,209,244 212,211,245 210,209,243 197,196,230 187,189,220 198,199,227 222,223,249 211,212,240 221,222,250 190,188,217 216,214,243 207,205,235 219,217,247 225,222,254 210,207,239 203,197,232 208,202,237 217,210,247 218,211,248 212,205,242 209,202,237 198,189,222 194,187,220 217,213,248 207,209,244 201,206,245 198,206,246 177,185,225 170,176,219 166,167,211 172,170,212 176,170,211 183,175,215 211,204,241 221,215,250 202,199,231 200,203,234 193,207,243 215,220,255 251,224,255 214,178,224 227,202,246 171,166,205 176,197,229 147,175,205 170,186,215 158,164,193 201,197,226 235,231,255 207,208,229 169,168,188 185,178,199 193,187,212 171,173,208 168,173,212 175,178,216 210,212,247 196,195,229 219,215,251 214,206,246 231,221,255 215,203,253 210,198,250 204,191,245 215,206,255 204,199,244 215,214,253 208,211,242 223,225,255 216,211,250 205,197,238 192,184,225 193,185,226 204,196,237 216,208,249 219,211,252 217,209,250 216,208,249 215,207,248 -210,201,244 210,201,244 213,205,246 218,210,251 216,208,249 210,202,243 205,197,237 205,197,237 199,192,229 212,205,242 214,210,245 211,207,242 213,209,244 216,215,247 211,210,242 197,196,228 193,191,220 195,193,222 212,210,239 178,176,205 194,192,221 182,180,209 216,214,244 217,215,245 205,200,232 183,178,210 183,177,212 211,205,240 225,218,255 212,205,242 204,197,234 211,204,241 202,195,230 181,174,209 217,213,249 207,207,243 206,207,245 202,205,243 212,215,253 192,193,231 194,191,230 210,203,240 224,216,253 194,183,221 179,169,205 180,173,206 170,165,197 189,190,224 162,174,210 192,197,236 220,197,241 254,224,255 219,198,237 217,210,245 213,223,253 196,210,238 208,211,239 189,185,214 179,172,199 171,166,193 169,173,197 198,202,226 217,211,236 215,207,238 209,200,243 228,220,255 219,212,255 204,198,239 197,192,231 232,224,255 173,165,206 179,170,213 215,205,252 211,203,250 204,196,243 216,209,252 207,203,238 205,206,234 197,200,221 201,203,227 211,205,240 212,204,245 210,202,243 201,193,234 191,183,224 191,183,224 200,192,233 210,202,243 208,200,241 210,202,243 -214,205,248 211,202,245 209,200,243 212,204,245 216,208,249 219,211,252 220,212,252 220,212,252 176,169,206 187,181,216 181,177,212 177,174,206 174,171,203 176,174,204 189,187,217 187,185,215 172,170,199 183,181,210 184,182,211 200,198,227 196,194,223 203,201,230 181,179,209 167,165,195 180,175,207 187,182,214 199,193,228 207,201,236 208,201,238 208,201,238 215,208,245 223,216,253 215,207,247 192,184,224 204,200,236 205,203,239 209,208,242 205,204,238 221,218,250 221,214,247 191,183,214 197,186,218 225,212,244 212,199,231 213,202,235 222,213,246 190,183,216 184,183,217 213,221,255 197,200,238 227,207,249 223,197,237 203,186,220 196,185,217 206,205,231 217,214,239 214,199,226 228,211,238 219,205,233 225,220,247 202,209,236 170,179,206 178,176,206 210,199,232 223,205,244 206,188,229 206,191,229 217,205,241 221,212,245 225,218,251 201,194,231 215,209,250 209,202,247 213,207,254 208,200,247 215,208,251 217,211,246 219,215,244 223,221,243 218,215,240 203,197,232 216,208,249 225,217,255 218,210,251 200,192,233 186,178,219 187,179,220 193,185,226 203,195,236 204,196,237 -219,209,255 215,206,249 210,201,244 208,199,242 210,202,243 212,204,245 210,202,242 206,198,238 208,201,238 217,211,246 207,202,234 211,206,237 199,194,225 184,180,209 207,203,232 218,214,243 227,223,252 210,206,235 177,173,202 174,170,199 173,168,199 197,192,223 195,190,221 196,191,222 186,181,213 200,195,227 205,199,234 192,186,221 183,177,212 189,183,218 204,198,233 210,206,242 211,205,246 205,201,242 187,182,221 209,203,238 216,209,242 211,201,231 200,188,216 223,208,235 216,200,224 213,197,221 231,214,241 221,206,234 220,205,236 230,217,249 208,199,232 198,194,229 178,184,219 170,171,209 214,200,236 233,213,248 224,208,239 237,224,250 196,183,205 230,209,231 247,213,237 246,211,237 219,200,227 221,218,244 184,196,224 166,181,213 213,213,249 193,182,215 207,186,211 223,198,218 247,227,246 239,223,241 211,200,220 202,196,219 238,233,255 200,198,234 205,202,247 216,212,255 205,198,249 202,193,243 205,194,240 206,195,235 226,215,248 214,203,236 215,207,244 210,202,242 209,201,241 213,205,245 218,210,250 216,208,248 206,198,238 196,188,228 191,183,223 190,182,222 -212,202,248 214,204,250 214,205,248 213,204,247 214,206,247 212,204,245 205,197,237 196,189,226 204,198,233 218,213,245 210,205,236 223,219,248 206,202,231 177,172,199 198,193,220 205,200,227 198,194,223 192,188,217 212,208,237 195,191,220 221,216,247 200,195,226 212,207,238 199,194,225 205,200,232 196,191,223 188,182,217 185,179,214 183,177,212 183,177,212 192,186,221 202,198,234 206,202,243 217,213,255 181,173,213 206,196,232 228,213,244 237,220,247 226,206,229 246,226,245 194,174,193 206,186,205 224,205,226 224,205,230 203,188,216 204,189,220 224,213,245 232,225,255 192,194,229 229,229,255 186,175,208 200,185,216 217,204,228 220,205,226 55,31,49 80,44,61 85,31,54 237,189,213 252,226,250 196,191,218 205,221,250 159,178,213 176,178,219 220,205,243 221,190,217 218,181,201 70,40,59 53,31,49 219,205,223 238,231,252 202,200,229 208,209,243 176,175,217 196,195,239 203,200,246 222,215,255 233,222,255 209,196,228 228,213,240 213,200,226 225,215,251 215,208,245 208,200,240 208,201,238 213,205,245 218,211,248 220,212,252 219,212,249 219,211,251 217,210,247 -207,196,242 213,202,248 216,207,250 215,206,249 214,208,249 216,210,251 212,207,246 204,200,236 185,181,216 210,207,239 204,199,230 219,215,244 210,205,234 186,179,206 205,198,225 196,189,216 191,186,215 202,196,227 189,183,214 212,206,237 191,185,216 217,211,242 210,203,236 227,220,253 220,215,247 206,201,233 200,195,227 207,202,234 211,206,238 209,204,236 210,207,239 216,214,250 206,204,246 219,215,255 194,185,225 198,184,218 222,200,229 242,216,240 245,217,236 215,189,203 218,192,206 217,194,208 210,188,206 233,214,235 219,203,227 199,185,213 224,209,241 203,193,229 224,222,255 142,140,176 190,184,215 191,182,208 182,173,193 219,202,216 246,213,227 92,41,55 113,44,64 101,39,61 232,198,222 241,235,255 186,201,233 154,173,210 204,204,250 187,167,214 245,199,242 93,40,79 74,30,67 218,185,219 232,209,241 207,195,225 203,200,232 210,212,247 192,198,233 195,199,234 197,199,230 218,215,240 197,191,208 106,98,105 101,89,87 84,73,76 209,200,226 211,205,240 216,209,246 214,208,243 207,200,237 205,199,234 210,203,240 216,210,245 207,200,237 207,201,236 -213,202,248 217,207,250 215,206,249 209,201,242 207,201,242 212,207,246 213,209,245 210,206,241 182,179,211 214,212,242 205,200,231 219,214,243 220,213,240 211,202,229 231,222,248 208,199,226 210,202,233 198,192,223 202,194,225 191,185,216 203,197,228 197,191,222 208,201,234 208,201,234 210,205,237 216,211,243 218,213,245 216,211,243 215,210,242 216,211,243 215,212,244 211,210,244 202,200,242 215,211,253 217,206,246 198,179,212 204,177,203 207,176,197 206,173,188 112,80,91 100,70,81 103,78,88 78,58,71 98,80,97 79,63,86 84,69,97 189,172,205 220,209,242 178,171,208 220,216,251 214,209,238 185,179,202 185,179,196 193,176,189 216,178,190 96,37,51 110,32,49 106,34,54 252,210,233 211,198,222 197,208,238 198,214,251 216,214,255 224,200,248 224,172,212 80,22,57 89,39,73 231,195,225 197,173,203 227,215,245 204,201,233 205,210,243 207,213,248 186,193,226 182,184,214 214,212,234 194,186,197 84,73,75 92,76,69 98,85,83 188,180,203 189,183,218 202,196,231 216,210,245 222,216,251 216,210,245 200,194,229 187,181,216 214,208,243 215,209,244 -216,203,247 212,202,245 220,211,254 218,210,251 195,189,230 223,218,255 202,200,236 206,205,239 218,215,247 184,182,212 210,205,236 214,209,238 183,174,201 185,173,201 204,190,218 182,168,196 177,166,198 187,178,211 194,183,216 190,181,214 189,180,213 214,205,238 188,181,214 211,204,237 208,201,234 188,181,214 218,213,244 207,202,233 219,217,247 209,207,237 201,199,229 212,211,245 206,205,244 217,212,251 212,198,234 230,207,239 215,183,208 99,62,82 113,77,91 99,64,74 100,71,80 92,69,77 83,66,77 81,65,82 93,77,100 76,61,88 58,42,73 196,182,216 178,170,207 185,181,216 206,201,230 209,206,228 209,206,221 201,187,198 249,212,222 97,37,48 125,44,59 110,31,50 223,174,194 238,216,240 217,223,252 188,198,232 189,182,225 225,198,237 255,216,235 90,37,47 80,37,46 246,215,224 222,204,217 221,215,232 204,206,230 207,215,245 185,193,230 151,156,195 176,175,214 212,205,238 218,204,228 201,182,199 229,205,213 232,210,222 223,212,238 176,171,203 201,196,228 207,202,234 210,205,237 206,201,233 215,210,242 213,208,240 198,193,225 207,202,234 -221,209,251 215,203,245 217,208,248 209,201,241 185,180,219 212,210,246 206,205,239 218,217,251 172,169,201 169,164,196 240,234,255 210,202,232 69,57,87 87,73,101 52,36,67 231,215,246 231,217,251 210,199,232 208,197,230 229,218,251 181,170,203 186,177,210 73,64,97 56,49,82 225,218,251 207,200,233 178,173,204 189,184,215 205,203,233 225,223,253 218,216,246 202,199,231 209,208,242 219,212,247 240,223,255 215,187,216 95,59,83 124,84,102 76,35,50 112,77,87 240,213,222 204,185,194 231,217,229 190,179,195 217,204,226 230,215,242 97,79,110 196,181,213 210,203,238 198,194,229 198,193,222 240,237,255 189,189,203 182,173,183 221,190,199 255,200,211 108,29,43 93,12,31 109,53,72 203,172,193 159,155,180 213,215,246 220,207,245 204,174,209 63,15,33 98,47,55 224,183,191 216,187,196 229,212,225 215,209,226 212,216,240 195,203,233 149,158,192 220,226,255 210,208,244 190,182,212 243,228,249 225,206,215 225,198,201 237,215,220 216,206,229 186,181,213 191,186,218 190,185,217 223,218,250 215,210,242 207,202,234 220,215,247 187,182,214 191,186,218 -213,202,240 212,201,239 218,210,247 212,205,242 187,183,219 202,201,235 203,202,236 215,214,246 201,198,230 215,210,242 154,148,179 226,215,247 193,178,210 65,49,80 77,58,91 69,50,83 234,218,252 210,196,232 244,230,255 200,188,224 211,199,235 63,53,89 57,48,81 184,175,208 182,176,207 221,215,246 206,201,232 196,191,222 165,163,192 163,161,190 207,205,234 218,216,245 224,219,250 199,189,219 231,211,240 94,63,90 112,73,95 92,50,68 255,220,235 246,211,225 233,211,223 199,185,197 209,200,213 234,228,245 184,175,196 179,166,192 201,183,212 176,159,192 172,165,200 204,201,233 205,197,227 196,190,213 165,165,181 216,212,223 197,176,185 241,198,209 118,47,63 127,48,67 102,39,59 222,179,200 240,223,244 205,194,220 230,207,239 232,199,233 87,38,70 108,58,88 237,196,224 239,209,238 206,188,217 211,206,235 197,199,230 201,208,241 180,189,222 200,208,237 209,212,233 207,206,216 178,169,165 102,90,72 121,103,74 89,74,55 237,227,243 182,177,208 187,182,213 176,171,202 180,175,206 188,183,214 211,206,237 217,212,243 200,195,226 205,200,231 -214,205,238 213,204,237 218,211,244 211,206,238 187,184,216 187,186,218 196,198,229 208,210,241 167,166,198 215,210,242 200,193,226 231,220,252 212,196,230 59,40,73 103,81,116 48,26,61 206,188,225 221,204,241 211,194,231 231,217,253 235,221,255 58,46,82 75,64,97 185,176,209 205,199,230 200,194,225 182,177,208 176,171,202 192,190,219 184,182,211 193,191,220 168,165,191 201,197,222 225,212,236 97,75,99 104,72,96 83,41,64 113,70,91 255,215,233 226,197,212 224,207,221 183,176,191 193,192,208 204,204,222 226,224,244 226,215,241 223,205,234 209,193,224 215,210,242 193,190,222 193,183,213 170,161,187 193,195,213 203,204,218 181,173,184 210,180,193 80,21,36 108,37,54 101,32,52 78,23,42 248,216,233 230,205,225 251,222,245 65,27,55 70,26,57 81,38,71 217,183,214 244,220,252 216,201,233 171,166,198 184,186,220 214,221,254 170,177,210 204,211,238 202,204,222 231,230,234 236,227,217 99,88,61 100,85,46 116,104,76 187,179,190 200,195,226 202,197,228 179,174,205 215,210,241 187,182,213 160,155,186 197,192,223 177,172,203 186,181,212 -223,212,244 214,206,237 213,207,238 205,200,231 185,183,213 174,174,204 193,195,225 203,205,235 181,180,212 204,201,233 204,197,230 216,205,238 211,193,230 199,179,214 83,58,96 82,57,95 75,54,92 229,211,250 228,210,249 202,187,225 63,49,85 50,38,74 213,202,235 220,211,244 191,185,216 198,192,223 214,210,239 213,209,238 185,183,212 181,179,208 167,168,196 195,192,217 192,186,205 203,190,206 72,48,66 109,74,94 115,74,95 214,171,192 233,195,217 234,209,229 222,211,231 191,193,211 179,186,205 166,173,192 216,217,238 210,204,229 220,203,230 192,176,207 222,217,249 194,191,223 212,199,231 206,194,222 209,212,233 164,172,189 183,189,202 198,186,198 255,223,239 112,47,63 87,16,33 113,48,64 255,206,220 240,202,214 254,215,230 80,44,58 78,47,62 201,175,191 209,187,205 237,223,241 198,192,215 234,235,255 171,174,205 162,169,202 169,175,210 214,217,248 215,212,237 222,213,226 223,211,209 102,86,69 106,88,59 94,79,60 227,218,231 190,186,215 201,197,226 182,178,207 182,178,207 186,182,211 199,195,224 200,196,225 192,188,217 206,202,231 -209,200,227 203,196,223 211,204,231 214,210,239 205,203,232 175,176,204 187,189,219 182,184,214 176,175,207 236,233,255 207,200,235 223,211,247 234,216,253 230,207,245 57,30,70 76,50,90 83,62,101 207,188,227 213,194,233 237,219,255 83,66,103 78,64,100 206,195,228 222,213,246 209,201,232 201,195,226 196,192,221 222,218,247 182,180,209 213,211,240 168,169,197 207,205,227 227,218,231 240,224,235 87,61,75 97,61,78 94,51,72 246,204,227 205,171,195 219,197,221 219,213,236 171,178,198 205,219,241 173,186,208 168,172,196 221,217,242 236,219,246 223,208,236 168,165,197 214,211,243 232,216,250 221,206,237 175,179,204 168,182,201 200,219,234 175,178,192 195,162,177 82,24,42 136,61,77 102,27,41 255,196,206 225,174,182 218,172,178 83,47,53 82,58,68 189,172,185 229,216,230 182,174,191 181,180,200 171,175,200 206,211,242 173,179,214 167,170,208 214,215,249 208,204,229 193,184,197 225,212,210 110,94,77 104,86,55 113,99,77 218,210,221 208,204,233 198,194,223 178,174,203 223,219,248 213,209,238 178,174,203 179,175,204 185,181,210 201,197,226 -199,190,216 191,185,210 200,194,219 214,211,237 216,215,241 180,181,209 192,194,224 177,179,209 172,171,203 202,199,231 224,214,250 188,173,211 197,176,215 187,163,203 82,54,97 75,48,88 60,36,76 200,181,220 207,188,227 173,155,194 62,45,82 219,205,241 216,205,238 216,207,240 218,210,241 206,200,231 191,187,216 199,195,224 192,190,219 208,206,235 194,195,221 205,203,223 212,203,213 237,219,226 105,78,88 108,71,87 122,79,100 244,204,229 242,209,236 211,192,219 181,180,206 207,218,245 148,166,189 199,215,238 183,190,215 187,183,208 201,184,211 216,201,228 190,190,220 216,215,247 211,194,228 221,204,237 176,179,207 165,184,205 187,215,232 199,214,230 216,194,212 234,182,199 102,24,41 114,32,45 112,42,49 255,205,209 102,50,50 81,41,46 214,193,208 191,178,202 195,187,210 220,216,241 204,205,233 198,201,232 193,197,232 157,160,198 213,214,252 169,169,199 220,215,236 234,227,232 200,191,178 90,79,49 116,103,59 92,81,49 236,228,238 185,181,210 192,188,217 177,173,202 187,183,212 206,202,231 213,209,238 187,183,212 179,175,204 185,181,210 -211,203,233 190,182,212 180,175,204 189,185,214 201,199,228 176,177,205 209,210,238 202,203,231 182,182,212 193,191,221 197,190,223 225,213,249 221,203,242 231,210,249 226,202,244 79,55,97 81,55,95 74,49,87 192,169,207 80,59,97 69,51,88 218,204,238 221,210,243 213,204,237 218,212,243 211,206,237 213,209,238 175,171,200 217,213,242 181,179,208 227,225,254 197,194,216 203,193,206 191,174,185 92,66,80 99,65,82 108,66,89 242,201,228 246,212,242 220,198,227 223,218,247 160,164,192 177,189,213 216,224,247 46,46,70 82,72,95 87,63,87 205,184,209 176,172,201 206,204,234 222,206,240 226,211,243 209,209,239 173,184,211 161,182,204 174,185,205 194,175,196 224,178,197 103,32,52 125,48,62 98,28,35 255,193,195 99,39,39 85,41,47 239,217,241 206,197,230 191,185,216 177,175,204 206,208,238 214,217,248 197,199,233 210,212,247 181,179,215 182,177,208 224,215,235 217,208,211 233,220,204 111,99,63 97,84,32 111,102,64 188,181,188 170,165,196 196,191,222 187,183,212 203,199,228 215,211,240 221,217,246 209,205,234 184,180,209 183,180,206 -206,197,237 214,205,245 224,217,254 176,170,205 193,188,219 176,174,203 209,208,234 215,215,239 177,177,201 186,183,209 187,183,212 179,173,204 203,194,227 165,155,191 230,217,255 63,45,84 84,57,96 62,31,68 234,206,242 82,58,93 57,40,74 196,183,215 221,213,244 210,205,236 205,203,233 229,227,255 186,184,214 232,227,255 208,203,234 177,171,202 213,207,238 218,211,238 218,211,232 216,204,224 88,64,88 95,64,91 104,64,92 241,199,230 254,215,247 231,200,231 231,212,239 217,207,230 189,182,203 216,205,225 90,71,90 88,62,80 115,79,96 234,203,224 196,183,209 188,183,212 217,206,238 230,219,251 214,208,239 181,176,207 174,169,200 227,215,245 228,203,231 229,189,214 76,23,43 101,39,55 111,48,58 255,199,206 100,34,36 91,38,51 204,180,214 182,174,215 179,175,210 182,183,211 179,184,205 174,179,200 177,178,204 186,184,214 181,174,209 190,179,212 195,179,203 200,183,192 204,185,172 113,94,59 118,103,47 95,83,43 217,209,219 213,208,240 217,212,244 223,218,249 177,172,203 176,171,202 229,225,254 201,197,226 218,215,241 186,183,208 -220,210,255 211,202,245 208,200,241 213,206,243 208,203,235 179,175,204 181,178,203 210,208,230 181,179,201 206,204,226 191,188,214 207,203,232 202,197,228 230,224,255 174,167,204 189,174,212 69,40,79 96,62,99 92,61,98 62,38,72 203,186,220 214,201,233 213,207,238 209,207,237 213,211,241 213,213,243 186,184,214 209,207,237 217,211,242 189,183,214 219,211,242 210,200,230 222,213,239 229,216,242 88,66,94 90,60,89 95,57,87 119,77,108 222,181,212 243,209,239 230,203,229 234,214,237 222,203,222 193,174,191 95,68,84 101,65,81 113,70,85 245,209,226 190,174,197 199,194,221 189,185,214 209,203,234 196,190,221 223,212,245 194,178,212 225,206,239 236,212,242 228,197,224 213,174,196 93,45,63 86,32,45 108,48,58 102,38,44 255,216,233 228,204,244 213,206,251 214,210,245 205,206,232 189,195,214 181,188,205 195,198,219 218,214,243 207,197,233 197,183,219 201,181,210 205,185,198 209,188,180 105,85,54 118,102,49 112,99,61 207,199,209 166,160,195 220,215,247 209,204,236 203,198,229 222,217,248 186,182,211 215,211,240 215,212,238 188,185,210 -199,189,235 225,216,255 208,200,241 210,203,240 191,186,218 212,208,237 187,184,210 185,182,207 190,188,210 208,206,228 216,213,239 190,186,215 215,210,241 208,202,237 222,215,252 216,203,241 88,61,100 91,57,97 55,26,65 85,61,96 181,163,200 184,170,204 185,178,211 188,185,217 170,168,198 174,174,204 183,181,210 182,180,209 202,197,226 184,179,208 220,212,242 223,214,241 218,208,231 239,225,249 224,202,227 74,43,70 106,68,96 104,63,91 255,215,243 252,217,243 239,210,235 231,208,230 249,230,247 228,207,222 100,71,86 107,72,86 102,59,72 216,180,196 198,186,208 217,216,242 209,208,234 219,217,246 213,211,241 225,220,251 170,162,193 181,168,200 234,216,245 235,213,238 238,209,232 73,37,54 88,45,58 80,33,42 104,52,59 242,198,215 226,205,244 216,209,254 216,212,247 206,207,233 188,194,213 180,186,205 188,190,214 202,200,230 216,208,245 198,183,221 210,193,226 216,196,215 221,202,199 95,78,52 103,90,46 106,95,63 180,172,183 198,193,225 173,168,200 207,202,234 232,227,255 207,202,233 210,206,235 192,188,217 201,197,226 184,181,207 -214,204,250 207,198,241 183,175,216 214,207,244 201,196,228 201,197,226 172,169,195 191,188,213 182,180,202 219,216,241 205,202,228 215,211,240 178,173,204 183,177,212 219,212,249 207,194,232 224,198,238 73,41,82 80,53,93 233,209,249 223,205,242 204,190,226 176,169,204 178,175,207 213,211,241 210,210,240 218,216,245 192,190,219 186,182,211 174,169,196 179,171,201 183,174,201 224,211,235 217,201,224 242,218,242 255,234,255 86,48,76 102,62,90 103,64,90 80,45,71 225,197,220 210,185,205 213,191,209 238,215,230 106,77,92 105,70,84 101,58,71 208,175,190 183,174,194 177,179,203 183,185,209 168,172,197 203,206,234 194,194,224 190,188,218 224,218,249 148,138,168 246,231,255 222,202,225 238,212,230 75,45,58 71,36,46 76,37,45 251,219,236 225,206,245 213,204,247 210,206,241 210,211,239 211,214,235 204,209,230 192,193,219 181,178,210 202,194,234 190,179,219 226,209,246 230,212,235 235,218,222 105,90,74 101,89,55 96,89,64 196,189,204 204,199,231 197,192,224 184,179,211 203,198,229 219,214,245 202,198,227 184,180,209 203,199,228 200,196,225 -223,214,255 207,198,241 190,182,223 203,196,233 207,202,234 193,189,218 173,170,196 180,177,202 179,176,201 191,188,213 218,215,241 210,206,235 210,205,236 175,169,204 181,174,211 226,213,251 230,203,246 83,53,96 91,64,107 222,200,242 209,191,230 185,173,209 198,191,226 198,195,227 186,184,214 177,177,207 174,175,203 180,178,207 187,184,210 215,211,236 197,190,217 196,187,213 201,189,211 225,208,229 218,194,218 233,203,228 236,201,227 105,68,94 115,78,104 98,66,91 90,62,85 113,88,108 76,54,72 98,75,90 87,58,73 85,50,64 123,85,97 243,212,227 229,223,242 207,212,233 204,208,232 168,173,198 190,194,222 168,172,200 161,165,194 180,182,212 219,217,246 206,201,228 210,200,223 232,220,238 230,213,227 202,182,194 206,182,192 209,190,207 216,202,238 210,202,243 209,205,240 212,213,241 221,223,247 219,223,247 201,204,232 180,179,213 201,194,237 198,188,231 230,216,255 216,201,232 214,200,212 106,95,91 96,86,68 89,81,68 215,209,228 211,206,238 206,201,233 190,185,217 182,177,208 200,195,226 209,204,235 188,183,214 178,173,204 187,182,213 -204,195,238 215,207,248 211,203,243 185,178,215 206,201,233 210,206,235 202,199,225 176,173,198 178,175,200 187,184,209 174,171,197 220,216,245 213,208,239 220,215,247 202,196,231 172,159,197 74,49,93 66,38,84 218,192,238 229,209,252 222,206,247 215,202,240 205,197,234 176,172,207 181,178,210 182,182,212 175,176,204 183,184,210 171,171,195 191,188,213 171,167,192 179,171,194 190,178,200 194,178,201 241,220,245 247,220,246 230,199,226 209,176,203 212,181,208 102,73,99 100,73,99 65,41,65 90,69,91 98,76,95 89,63,79 107,78,93 234,201,216 222,196,212 197,191,210 193,199,218 194,199,220 189,195,218 196,201,226 214,221,248 185,191,220 175,179,208 158,161,189 177,178,204 222,220,242 217,212,233 183,175,192 220,210,223 207,194,208 204,192,212 199,190,223 209,201,241 213,210,242 208,206,235 205,206,232 209,212,240 207,209,240 198,198,234 184,179,224 190,183,228 219,209,252 218,206,242 237,225,247 197,189,196 214,205,201 227,222,221 226,221,242 186,181,213 216,211,243 204,199,231 186,181,212 201,196,227 190,185,216 213,208,239 186,181,212 207,202,233 -215,207,248 199,191,232 194,186,226 195,188,225 216,211,243 202,197,228 205,201,230 216,213,239 194,191,217 188,185,211 177,173,202 175,171,200 225,220,251 207,202,234 201,195,230 72,61,99 68,45,90 85,59,107 231,207,255 221,201,246 220,206,248 220,209,249 189,181,218 193,189,224 185,182,214 202,202,232 210,211,239 210,211,237 188,188,212 176,174,196 182,180,202 198,192,215 220,209,235 192,179,205 224,206,235 237,217,246 208,184,216 255,233,255 240,216,248 223,199,231 211,188,220 241,221,250 214,195,222 173,152,177 219,198,220 194,172,191 204,177,197 225,205,224 195,189,208 174,175,195 180,183,204 174,178,202 174,179,204 204,209,234 204,211,238 198,205,232 186,190,218 171,176,201 190,192,216 205,206,227 212,211,231 199,196,212 179,173,190 202,195,216 197,190,223 217,210,247 223,220,252 210,208,238 200,201,229 208,208,238 215,216,250 215,214,254 203,200,245 201,195,242 208,201,246 207,198,238 208,200,230 190,184,203 196,191,200 223,217,228 206,202,227 224,219,250 178,173,204 215,210,241 219,214,246 174,169,201 212,207,239 209,204,236 178,173,205 209,204,236 -214,206,247 224,216,255 204,197,234 176,170,205 186,180,215 213,208,239 220,216,245 214,211,237 200,197,223 220,217,243 184,180,209 181,177,206 185,180,211 218,213,244 57,52,84 66,55,93 67,47,92 219,197,246 216,196,243 220,202,249 218,205,249 215,205,247 211,203,243 214,210,245 175,174,206 188,188,218 203,204,232 206,207,233 211,211,235 182,183,204 208,206,228 210,208,230 185,178,205 194,183,215 209,196,228 223,209,243 236,220,254 199,182,219 234,217,254 221,204,241 234,217,254 214,198,232 214,199,231 230,214,245 188,173,201 207,190,217 186,167,192 184,170,194 220,213,234 178,176,196 224,222,244 209,209,233 210,211,237 179,183,208 206,209,237 206,210,238 166,170,198 225,229,255 159,163,188 187,189,213 184,185,206 183,184,204 175,175,193 188,185,207 190,183,216 209,203,238 213,210,242 200,198,228 193,193,223 203,202,234 206,206,242 201,200,240 207,204,250 201,197,246 206,200,247 217,210,253 209,203,238 192,187,214 183,179,198 213,211,230 213,208,235 215,210,241 209,204,235 185,180,211 214,209,241 216,211,243 177,172,204 216,211,243 181,176,208 215,210,242 -218,210,250 212,204,244 206,199,236 181,175,210 193,187,222 204,199,231 219,214,245 207,203,232 214,210,239 213,209,238 215,211,240 185,181,210 185,180,211 180,175,206 208,203,235 218,210,247 210,193,237 226,205,254 224,206,253 218,202,249 222,209,253 221,211,253 214,206,246 211,207,242 193,192,224 190,190,220 198,199,227 208,209,235 200,202,226 184,187,208 187,188,209 203,203,227 178,173,205 221,214,251 210,203,240 208,200,240 217,209,250 212,204,245 217,209,250 210,200,242 220,210,252 210,198,240 218,207,247 212,201,239 212,202,238 220,211,244 189,181,212 185,177,207 184,175,201 196,188,211 192,186,211 186,182,207 184,179,206 181,178,204 175,173,202 184,182,211 177,178,206 179,180,208 174,175,203 185,186,212 206,205,231 192,192,216 173,174,195 183,180,206 208,203,235 185,179,214 211,208,240 219,216,248 214,213,245 166,165,197 217,217,253 200,199,239 199,196,241 197,194,240 197,194,240 196,191,236 216,213,252 183,180,212 198,194,223 199,196,222 204,199,230 216,211,243 221,216,248 207,202,234 184,179,211 208,203,235 213,208,239 187,182,213 191,186,217 206,201,232 -201,193,233 209,202,239 226,219,255 215,209,244 172,166,201 186,181,213 215,210,242 215,210,241 216,211,242 214,210,239 216,212,241 207,203,232 208,203,234 200,195,226 205,200,231 206,199,234 225,212,255 224,208,255 205,189,236 186,173,217 186,176,219 192,184,225 199,194,233 212,208,244 198,197,231 193,192,224 198,198,228 211,212,240 215,216,242 202,204,228 191,191,215 187,186,212 178,174,210 214,210,251 208,204,245 203,201,243 209,208,252 204,202,248 210,208,254 205,202,248 217,209,255 208,198,244 216,207,250 210,202,243 211,205,246 219,216,255 201,199,235 204,201,233 211,202,229 201,188,214 178,167,193 181,172,199 211,202,229 220,212,242 198,193,222 179,175,204 185,181,210 188,186,215 180,178,207 177,175,204 182,181,207 174,173,199 176,173,199 198,195,221 188,183,215 187,181,216 204,201,233 198,195,227 218,217,249 179,178,212 204,202,238 208,207,246 203,201,243 207,204,249 184,181,226 211,209,251 211,207,248 205,203,239 189,188,222 193,190,222 206,201,233 187,182,214 208,203,235 207,202,234 208,203,235 190,185,216 211,206,237 209,204,235 182,177,208 182,178,207 -193,186,223 220,213,250 209,202,239 205,199,234 193,187,222 200,195,227 190,185,217 210,205,236 207,202,233 200,195,226 196,191,222 211,206,237 211,206,237 208,203,234 194,189,220 192,187,219 204,194,236 212,201,247 213,202,248 214,204,247 213,204,247 199,191,232 184,179,218 186,182,218 211,210,244 201,200,232 194,194,224 201,202,230 211,212,240 206,207,233 183,184,210 161,162,190 180,175,214 210,206,248 206,205,247 200,203,247 200,205,250 196,202,249 202,206,254 204,204,252 208,204,253 203,194,244 212,202,249 202,195,240 204,199,244 207,206,248 201,206,245 212,214,249 219,211,242 216,202,230 198,184,212 188,176,206 210,198,228 211,200,232 198,187,219 183,175,206 209,201,231 220,215,244 218,213,242 204,200,229 192,188,217 181,178,204 186,181,208 206,202,231 179,174,205 195,190,222 202,198,233 180,176,211 216,212,247 191,189,225 181,179,215 206,204,240 208,205,244 209,206,245 173,172,211 203,202,241 207,206,245 213,213,249 194,194,230 192,191,225 202,198,233 192,186,221 187,182,214 226,221,253 196,191,222 198,193,224 193,188,219 218,214,243 208,204,233 190,187,213 -214,207,244 184,177,214 198,192,227 212,206,241 191,185,220 202,196,231 214,209,241 183,178,210 218,213,245 206,201,232 192,187,218 219,214,245 217,212,243 223,218,249 208,204,233 214,209,241 212,204,245 217,208,251 215,206,249 217,209,250 218,210,251 207,199,240 200,195,234 210,205,244 184,182,218 178,177,211 172,171,203 177,177,207 197,197,227 214,215,243 207,208,236 191,191,221 187,180,217 205,199,240 207,206,248 202,205,249 195,204,248 194,203,247 200,206,253 203,205,253 206,202,251 204,195,245 212,201,251 200,190,237 199,194,239 188,190,231 194,202,242 205,211,248 213,206,239 225,212,244 221,208,240 196,183,215 199,188,220 191,180,212 195,184,216 197,186,218 192,184,214 212,204,234 222,217,246 216,211,240 203,198,227 190,185,214 182,177,204 183,178,207 193,188,219 203,198,230 209,205,240 182,178,213 202,198,234 200,196,232 170,168,204 187,186,220 212,211,245 202,201,235 178,177,211 181,182,216 212,211,245 207,208,242 211,211,247 203,201,237 208,204,239 202,196,231 222,216,251 196,191,223 209,204,235 181,176,207 201,197,226 194,191,217 217,214,240 192,189,214 -193,187,222 201,195,230 213,207,242 190,184,219 219,213,248 185,179,214 196,190,225 214,209,241 215,210,242 203,198,230 188,183,214 212,207,238 207,203,232 215,211,240 206,202,231 218,213,245 209,204,243 212,206,247 207,201,242 203,197,238 207,201,242 206,201,240 210,205,244 226,221,255 213,211,247 212,211,245 201,200,234 187,186,218 183,185,216 189,191,222 186,188,219 179,176,208 195,188,223 201,193,230 210,207,246 206,208,248 196,204,244 196,206,246 200,206,249 206,206,252 213,205,252 213,202,248 223,210,255 208,195,239 207,200,243 181,181,221 195,202,241 203,209,246 212,208,244 216,206,242 212,203,236 188,179,212 213,204,237 211,202,235 217,209,240 209,201,232 173,165,195 187,179,209 200,192,222 204,196,226 205,198,225 209,202,229 197,192,219 177,172,201 210,205,237 198,194,229 210,206,242 198,194,230 185,180,219 207,203,239 185,181,217 176,173,205 207,205,235 208,206,235 185,183,212 187,188,216 207,205,235 208,207,239 212,211,245 206,205,239 207,203,239 230,224,255 211,205,240 218,213,245 183,178,209 202,197,228 183,179,208 193,190,216 204,202,224 186,184,206 -209,203,238 177,171,206 227,221,255 211,205,240 210,204,239 174,168,203 225,219,254 215,209,244 188,183,215 183,178,210 178,173,204 189,184,215 185,181,210 185,181,210 180,176,205 185,183,213 182,177,216 200,196,237 212,206,247 214,208,249 218,213,252 212,207,246 204,199,238 205,200,239 196,194,230 206,204,240 210,209,243 205,204,238 201,202,236 207,208,242 211,213,244 215,212,244 205,195,231 196,186,222 209,204,243 206,209,247 197,204,243 202,211,249 199,205,248 207,206,250 211,204,249 215,202,248 225,210,254 211,198,242 215,207,248 176,176,216 198,206,243 200,208,245 211,207,243 211,203,240 210,203,238 183,176,211 218,211,244 216,209,242 228,220,251 215,207,238 190,182,212 189,181,211 189,181,211 187,179,209 196,189,216 220,213,240 217,212,239 186,182,211 216,211,243 192,188,223 199,195,231 212,208,244 177,172,211 214,210,246 208,204,240 178,175,207 186,184,213 214,213,239 179,179,203 210,210,234 187,185,214 212,210,240 186,185,217 187,186,220 216,209,246 210,203,240 221,215,250 203,198,230 218,213,245 179,175,204 191,187,216 205,202,227 194,192,214 187,186,206 diff --git a/ReCapcha/Test/bin/Debug/experiment/99_binaried.txt b/ReCapcha/Test/bin/Debug/experiment/99_binaried.txt deleted file mode 100644 index 323df2a..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/99_binaried.txt +++ /dev/null @@ -1,40 +0,0 @@ -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 0,0,0 0,0,0 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/99_greied.txt b/ReCapcha/Test/bin/Debug/experiment/99_greied.txt deleted file mode 100644 index 566d708..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/99_greied.txt +++ /dev/null @@ -1,40 +0,0 @@ -251,251,251 251,251,251 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 251,251,251 251,251,251 252,252,252 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 253,253,253 252,252,252 250,250,250 250,250,250 252,252,252 253,253,253 252,252,252 253,253,253 252,252,252 252,252,252 253,253,253 250,250,250 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -251,251,251 251,251,251 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 251,251,251 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 253,253,253 253,253,253 250,250,250 250,250,250 252,252,252 253,253,253 252,252,252 253,253,253 252,252,252 252,252,252 254,254,254 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 250,250,250 251,251,251 252,252,252 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 254,254,254 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 251,251,251 251,251,251 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 255,255,255 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 250,250,250 249,249,249 250,250,250 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 253,253,253 251,251,251 253,253,253 255,255,255 254,254,254 254,254,254 250,250,250 254,254,254 253,253,253 254,254,254 252,252,252 247,247,247 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 253,253,253 254,254,254 254,254,254 252,252,252 250,250,250 254,254,254 250,250,250 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 252,252,252 249,249,249 245,245,245 245,245,245 252,252,252 253,253,253 253,253,253 252,252,252 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 252,252,252 250,250,250 253,253,253 249,249,249 247,247,247 252,252,252 253,253,253 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 249,249,249 248,248,248 254,254,254 254,254,254 254,254,254 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 254,254,254 250,250,250 249,249,249 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 250,250,250 246,246,246 247,247,247 249,249,249 251,251,251 252,252,252 253,253,253 253,253,253 252,252,252 254,254,254 253,253,253 255,255,255 253,253,253 243,243,243 246,246,246 240,240,240 241,241,241 252,252,252 246,246,246 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 245,245,245 250,250,250 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 251,251,251 250,250,250 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 249,249,249 245,245,245 244,244,244 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -250,250,250 251,251,251 252,252,252 253,253,253 253,253,253 252,252,252 249,249,249 248,248,248 249,249,249 247,247,247 243,243,243 249,249,249 254,254,254 252,252,252 251,251,251 254,254,254 253,253,253 253,253,253 253,253,253 251,251,251 249,249,249 249,249,249 248,248,248 244,244,244 248,248,248 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 252,252,252 253,253,253 252,252,252 254,254,254 253,253,253 254,254,254 252,252,252 248,248,248 244,244,244 179,179,179 191,191,191 250,250,250 251,251,251 254,254,254 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 252,252,252 250,250,250 249,249,249 248,248,248 248,248,248 248,248,248 245,245,245 248,248,248 250,250,250 249,249,249 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 251,251,251 252,252,252 252,252,252 250,250,250 250,250,250 252,252,252 252,252,252 252,252,252 249,249,249 245,245,245 247,247,247 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -253,253,253 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 251,251,251 248,248,248 250,250,250 251,251,251 251,251,251 249,249,249 253,253,253 253,253,253 250,250,250 254,254,254 249,249,249 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 251,251,251 246,246,246 248,248,248 250,250,250 251,251,251 250,250,250 248,248,248 246,246,246 244,244,244 250,250,250 252,252,252 252,252,252 252,252,252 254,254,254 253,253,253 253,253,253 251,251,251 248,248,248 239,239,239 101,101,101 127,127,127 247,247,247 251,251,251 253,253,253 243,243,243 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 251,251,251 252,252,252 251,251,251 250,250,250 250,250,250 249,249,249 249,249,249 249,249,249 250,250,250 250,250,250 251,251,251 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 249,249,249 248,248,248 248,248,248 249,249,249 251,251,251 251,251,251 251,251,251 251,251,251 252,252,252 252,252,252 251,251,251 245,245,245 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -253,253,253 254,254,254 254,254,254 252,252,252 243,243,243 240,240,240 246,246,246 248,248,248 238,238,238 248,248,248 250,250,250 250,250,250 252,252,252 253,253,253 254,254,254 248,248,248 253,253,253 253,253,253 254,254,254 251,251,251 250,250,250 250,250,250 249,249,249 247,247,247 248,248,248 248,248,248 248,248,248 248,248,248 251,251,251 252,252,252 254,254,254 252,252,252 249,249,249 251,251,251 252,252,252 252,252,252 254,254,254 253,253,253 252,252,252 249,249,249 246,246,246 237,237,237 84,84,84 109,109,109 241,241,241 251,251,251 252,252,252 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 252,252,252 250,250,250 250,250,250 251,251,251 249,249,249 246,246,246 243,243,243 243,243,243 240,240,240 244,244,244 248,248,248 249,249,249 252,252,252 255,255,255 254,254,254 250,250,250 250,250,250 254,254,254 255,255,255 252,252,252 250,250,250 247,247,247 243,243,243 243,243,243 246,246,246 246,246,246 246,246,246 248,248,248 249,249,249 250,250,250 250,250,250 250,250,250 253,253,253 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -251,251,251 249,249,249 247,247,247 251,251,251 250,250,250 249,249,249 247,247,247 244,244,244 247,247,247 247,247,247 249,249,249 249,249,249 243,243,243 253,253,253 254,254,254 249,249,249 254,254,254 253,253,253 250,250,250 249,249,249 247,247,247 245,245,245 247,247,247 246,246,246 246,246,246 245,245,245 247,247,247 249,249,249 250,250,250 251,251,251 252,252,252 249,249,249 248,248,248 251,251,251 252,252,252 251,251,251 253,253,253 253,253,253 251,251,251 248,248,248 245,245,245 235,235,235 90,90,90 113,113,113 242,242,242 251,251,251 251,251,251 250,250,250 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 252,252,252 250,250,250 248,248,248 249,249,249 247,247,247 247,247,247 247,247,247 246,246,246 246,246,246 246,246,246 248,248,248 249,249,249 251,251,251 250,250,250 253,253,253 254,254,254 251,251,251 253,253,253 254,254,254 252,252,252 250,250,250 248,248,248 246,246,246 246,246,246 247,247,247 248,248,248 249,249,249 249,249,249 248,248,248 247,247,247 251,251,251 251,251,251 253,253,253 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 -253,253,253 253,253,253 251,251,251 249,249,249 247,247,247 246,246,246 244,244,244 241,241,241 246,246,246 232,232,232 246,246,246 249,249,249 245,245,245 244,244,244 253,253,253 247,247,247 251,251,251 243,243,243 248,248,248 251,251,251 248,248,248 246,246,246 243,243,243 244,244,244 243,243,243 245,245,245 245,245,245 247,247,247 246,246,246 245,245,245 249,249,249 250,250,250 247,247,247 250,250,250 251,251,251 251,251,251 253,253,253 253,253,253 250,250,250 247,247,247 243,243,243 228,228,228 86,86,86 110,110,110 242,242,242 251,251,251 247,247,247 246,246,246 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 252,252,252 249,249,249 248,248,248 249,249,249 247,247,247 242,242,242 240,240,240 243,243,243 244,244,244 239,239,239 243,243,243 248,248,248 252,252,252 250,250,250 250,250,250 255,255,255 255,255,255 254,254,254 248,248,248 247,247,247 248,248,248 246,246,246 240,240,240 237,237,237 247,247,247 245,245,245 244,244,244 246,246,246 249,249,249 249,249,249 250,250,250 247,247,247 253,253,253 253,253,253 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 -247,247,247 252,252,252 248,248,248 207,207,207 156,156,156 146,146,146 186,186,186 231,231,231 143,143,143 121,121,121 181,181,181 249,249,249 249,249,249 247,247,247 254,254,254 252,252,252 251,251,251 249,249,249 250,250,250 249,249,249 236,236,236 190,190,190 156,156,156 150,150,150 148,148,148 148,148,148 147,147,147 145,145,145 154,154,154 183,183,183 225,225,225 247,247,247 247,247,247 251,251,251 252,252,252 252,252,252 253,253,253 253,253,253 251,251,251 248,248,248 247,247,247 226,226,226 92,92,92 108,108,108 236,236,236 251,251,251 250,250,250 250,250,250 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 253,253,253 250,250,250 248,248,248 245,245,245 217,217,217 165,165,165 120,120,120 100,100,100 105,105,105 122,122,122 172,172,172 233,233,233 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 252,252,252 251,251,251 249,249,249 248,248,248 227,227,227 182,182,182 152,152,152 239,239,239 198,198,198 143,143,143 127,127,127 159,159,159 207,207,207 239,239,239 246,246,246 250,250,250 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -250,250,250 250,250,250 240,240,240 163,163,163 86,86,86 93,93,93 158,158,158 99,99,99 91,91,91 111,111,111 198,198,198 250,250,250 246,246,246 247,247,247 254,254,254 243,243,243 246,246,246 245,245,245 247,247,247 248,248,248 234,234,234 156,156,156 102,102,102 116,116,116 103,103,103 109,109,109 98,98,98 94,94,94 92,92,92 133,133,133 223,223,223 245,245,245 248,248,248 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 251,251,251 251,251,251 252,252,252 235,235,235 81,81,81 101,101,101 239,239,239 252,252,252 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 250,250,250 244,244,244 214,214,214 107,107,107 86,86,86 91,91,91 94,94,94 101,101,101 107,107,107 142,142,142 250,250,250 254,254,254 251,251,251 253,253,253 253,253,253 254,254,254 252,252,252 249,249,249 246,246,246 248,248,248 236,236,236 90,90,90 97,97,97 159,159,159 101,101,101 99,99,99 107,107,107 88,88,88 90,90,90 189,189,189 235,235,235 245,245,245 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -252,252,252 245,245,245 233,233,233 138,138,138 81,81,81 57,57,57 106,106,106 113,113,113 175,175,175 179,179,179 228,228,228 250,250,250 249,249,249 251,251,251 254,254,254 252,252,252 249,249,249 248,248,248 249,249,249 249,249,249 252,252,252 247,247,247 234,234,234 232,232,232 223,223,223 206,206,206 187,187,187 91,91,91 102,102,102 222,222,222 242,242,242 237,237,237 249,249,249 252,252,252 254,254,254 253,253,253 253,253,253 254,254,254 251,251,251 252,252,252 253,253,253 237,237,237 80,80,80 98,98,98 239,239,239 252,252,252 253,253,253 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 249,249,249 248,248,248 240,240,240 114,114,114 89,89,89 98,98,98 198,198,198 220,220,220 229,229,229 236,236,236 232,232,232 253,253,253 253,253,253 250,250,250 253,253,253 252,252,252 254,254,254 252,252,252 249,249,249 247,247,247 249,249,249 235,235,235 86,86,86 93,93,93 116,116,116 193,193,193 225,225,225 216,216,216 176,176,176 69,69,69 101,101,101 233,233,233 244,244,244 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 251,251,251 251,251,251 254,254,254 255,255,255 255,255,255 255,255,255 -252,252,252 238,238,238 231,231,231 109,109,109 94,94,94 89,89,89 162,162,162 218,218,218 236,236,236 237,237,237 246,246,246 251,251,251 250,250,250 248,248,248 254,254,254 254,254,254 251,251,251 254,254,254 253,253,253 252,252,252 252,252,252 253,253,253 251,251,251 244,244,244 234,234,234 215,215,215 98,98,98 116,116,116 225,225,225 245,245,245 253,253,253 254,254,254 252,252,252 253,253,253 254,254,254 253,253,253 254,254,254 254,254,254 251,251,251 252,252,252 254,254,254 237,237,237 80,80,80 99,99,99 238,238,238 253,253,253 253,253,253 254,254,254 253,253,253 251,251,251 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 235,235,235 239,239,239 102,102,102 85,85,85 103,103,103 205,205,205 213,213,213 226,226,226 236,236,236 228,228,228 238,238,238 240,240,240 251,251,251 253,253,253 253,253,253 254,254,254 252,252,252 250,250,250 248,248,248 252,252,252 237,237,237 88,88,88 96,96,96 231,231,231 247,247,247 238,238,238 223,223,223 229,229,229 140,140,140 81,81,81 200,200,200 245,245,245 252,252,252 254,254,254 253,253,253 254,254,254 254,254,254 251,251,251 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 -252,252,252 245,245,245 227,227,227 83,83,83 82,82,82 112,112,112 213,213,213 231,231,231 241,241,241 247,247,247 247,247,247 249,249,249 251,251,251 248,248,248 247,247,247 253,253,253 249,249,249 250,250,250 252,252,252 252,252,252 252,252,252 250,250,250 248,248,248 239,239,239 192,192,192 81,81,81 113,113,113 221,221,221 247,247,247 252,252,252 249,249,249 253,253,253 255,255,255 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 237,237,237 81,81,81 99,99,99 238,238,238 253,253,253 253,253,253 254,254,254 253,253,253 252,252,252 253,253,253 253,253,253 254,254,254 254,254,254 255,255,255 253,253,253 245,245,245 243,243,243 230,230,230 101,101,101 90,90,90 89,89,89 102,102,102 145,145,145 206,206,206 230,230,230 242,242,242 247,247,247 247,247,247 249,249,249 251,251,251 244,244,244 254,254,254 253,253,253 252,252,252 250,250,250 253,253,253 238,238,238 88,88,88 98,98,98 247,247,247 242,242,242 249,249,249 243,243,243 232,232,232 140,140,140 92,92,92 192,192,192 246,246,246 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 251,251,251 250,250,250 254,254,254 255,255,255 255,255,255 255,255,255 -244,244,244 243,243,243 212,212,212 90,90,90 81,81,81 130,130,130 228,228,228 228,228,228 243,243,243 252,252,252 249,249,249 248,248,248 249,249,249 251,251,251 249,249,249 253,253,253 252,252,252 251,251,251 251,251,251 249,249,249 249,249,249 243,243,243 234,234,234 201,201,201 99,99,99 125,125,125 220,220,220 239,239,239 239,239,239 254,254,254 252,252,252 250,250,250 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 238,238,238 82,82,82 100,100,100 238,238,238 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 252,252,252 247,247,247 235,235,235 234,234,234 187,187,187 104,104,104 80,80,80 72,72,72 76,76,76 88,88,88 144,144,144 225,225,225 243,243,243 244,244,244 239,239,239 251,251,251 253,253,253 254,254,254 254,254,254 253,253,253 251,251,251 254,254,254 239,239,239 88,88,88 99,99,99 251,251,251 233,233,233 250,250,250 248,248,248 237,237,237 158,158,158 110,110,110 174,174,174 245,245,245 249,249,249 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 251,251,251 253,253,253 255,255,255 255,255,255 255,255,255 -249,249,249 240,240,240 173,173,173 102,102,102 89,89,89 161,161,161 234,234,234 242,242,242 249,249,249 254,254,254 252,252,252 248,248,248 248,248,248 249,249,249 252,252,252 253,253,253 252,252,252 253,253,253 251,251,251 245,245,245 243,243,243 234,234,234 166,166,166 86,86,86 98,98,98 228,228,228 232,232,232 228,228,228 248,248,248 254,254,254 253,253,253 253,253,253 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 252,252,252 253,253,253 254,254,254 238,238,238 83,83,83 101,101,101 237,237,237 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 245,245,245 244,244,244 237,237,237 229,229,229 217,217,217 154,154,154 98,98,98 84,84,84 81,81,81 100,100,100 194,194,194 241,241,241 242,242,242 243,243,243 252,252,252 253,253,253 254,254,254 254,254,254 253,253,253 251,251,251 253,253,253 238,238,238 88,88,88 98,98,98 249,249,249 252,252,252 252,252,252 240,240,240 238,238,238 148,148,148 103,103,103 193,193,193 244,244,244 248,248,248 252,252,252 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 -248,248,248 241,241,241 146,146,146 91,91,91 80,80,80 186,186,186 235,235,235 250,250,250 253,253,253 253,253,253 253,253,253 247,247,247 244,244,244 248,248,248 253,253,253 253,253,253 244,244,244 254,254,254 252,252,252 246,246,246 236,236,236 181,181,181 123,123,123 108,108,108 233,233,233 217,217,217 242,242,242 247,247,247 249,249,249 253,253,253 244,244,244 253,253,253 255,255,255 252,252,252 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 253,253,253 254,254,254 240,240,240 85,85,85 103,103,103 238,238,238 252,252,252 253,253,253 253,253,253 251,251,251 250,250,250 251,251,251 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 251,251,251 243,243,243 231,231,231 245,245,245 241,241,241 234,234,234 224,224,224 134,134,134 91,91,91 72,72,72 171,171,171 234,234,234 243,243,243 248,248,248 252,252,252 249,249,249 254,254,254 254,254,254 253,253,253 250,250,250 252,252,252 235,235,235 86,86,86 95,95,95 237,237,237 249,249,249 241,241,241 238,238,238 235,235,235 138,138,138 98,98,98 196,196,196 242,242,242 247,247,247 251,251,251 254,254,254 254,254,254 253,253,253 251,251,251 252,252,252 253,253,253 255,255,255 255,255,255 255,255,255 -237,237,237 241,241,241 142,142,142 88,88,88 92,92,92 226,226,226 232,232,232 254,254,254 252,252,252 251,251,251 252,252,252 249,249,249 245,245,245 249,249,249 253,253,253 249,249,249 254,254,254 252,252,252 246,246,246 235,235,235 177,177,177 92,92,92 116,116,116 222,222,222 230,230,230 234,234,234 235,235,235 246,246,246 250,250,250 245,245,245 251,251,251 251,251,251 255,255,255 253,253,253 253,253,253 253,253,253 253,253,253 252,252,252 252,252,252 253,253,253 254,254,254 241,241,241 87,87,87 105,105,105 239,239,239 252,252,252 253,253,253 254,254,254 252,252,252 251,251,251 252,252,252 252,252,252 253,253,253 252,252,252 252,252,252 252,252,252 244,244,244 250,250,250 220,220,220 244,244,244 234,234,234 237,237,237 232,232,232 141,141,141 91,91,91 83,83,83 205,205,205 244,244,244 244,244,244 240,240,240 253,253,253 252,252,252 254,254,254 254,254,254 252,252,252 248,248,248 249,249,249 233,233,233 84,84,84 92,92,92 223,223,223 235,235,235 234,234,234 234,234,234 215,215,215 95,95,95 119,119,119 237,237,237 242,242,242 247,247,247 251,251,251 253,253,253 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -244,244,244 242,242,242 108,108,108 91,91,91 91,91,91 235,235,235 245,245,245 253,253,253 251,251,251 252,252,252 254,254,254 249,249,249 247,247,247 249,249,249 254,254,254 252,252,252 250,250,250 245,245,245 237,237,237 171,171,171 76,76,76 94,94,94 160,160,160 166,166,166 175,175,175 179,179,179 174,174,174 183,183,183 220,220,220 246,246,246 248,248,248 247,247,247 253,253,253 253,253,253 253,253,253 252,252,252 251,251,251 252,252,252 252,252,252 254,254,254 250,250,250 248,248,248 93,93,93 105,105,105 240,240,240 251,251,251 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 252,252,252 248,248,248 244,244,244 200,200,200 92,92,92 114,114,114 145,145,145 129,129,129 136,136,136 79,79,79 84,84,84 159,159,159 232,232,232 250,250,250 249,249,249 252,252,252 253,253,253 252,252,252 254,254,254 253,253,253 246,246,246 247,247,247 246,246,246 226,226,226 87,87,87 80,80,80 108,108,108 149,149,149 214,214,214 197,197,197 102,102,102 101,101,101 192,192,192 239,239,239 244,244,244 248,248,248 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -249,249,249 231,231,231 98,98,98 83,83,83 124,124,124 239,239,239 247,247,247 251,251,251 251,251,251 252,252,252 254,254,254 249,249,249 247,247,247 250,250,250 254,254,254 253,253,253 250,250,250 246,246,246 232,232,232 169,169,169 85,85,85 77,77,77 98,98,98 82,82,82 86,86,86 92,92,92 96,96,96 129,129,129 197,197,197 246,246,246 249,249,249 250,250,250 253,253,253 253,253,253 253,253,253 251,251,251 251,251,251 252,252,252 254,254,254 254,254,254 254,254,254 243,243,243 98,98,98 108,108,108 233,233,233 252,252,252 254,254,254 248,248,248 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 251,251,251 247,247,247 243,243,243 212,212,212 117,117,117 99,99,99 90,90,90 73,73,73 106,106,106 99,99,99 177,177,177 220,220,220 250,250,250 252,252,252 250,250,250 250,250,250 251,251,251 251,251,251 252,252,252 252,252,252 244,244,244 245,245,245 245,245,245 231,231,231 87,87,87 95,95,95 180,180,180 121,121,121 88,88,88 91,91,91 114,114,114 182,182,182 236,236,236 239,239,239 248,248,248 251,251,251 253,253,253 254,254,254 255,255,255 254,254,254 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -239,239,239 247,247,247 239,239,239 235,235,235 237,237,237 243,243,243 252,252,252 252,252,252 251,251,251 252,252,252 254,254,254 249,249,249 247,247,247 251,251,251 254,254,254 252,252,252 250,250,250 251,251,251 253,253,253 245,245,245 234,234,234 239,239,239 239,239,239 239,239,239 243,243,243 250,250,250 245,245,245 241,241,241 252,252,252 254,254,254 253,253,253 251,251,251 254,254,254 253,253,253 253,253,253 250,250,250 250,250,250 252,252,252 254,254,254 254,254,254 243,243,243 252,252,252 226,226,226 226,226,226 245,245,245 252,252,252 250,250,250 254,254,254 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 253,253,253 251,251,251 250,250,250 248,248,248 241,241,241 238,238,238 222,222,222 204,204,204 224,224,224 233,233,233 239,239,239 244,244,244 253,253,253 254,254,254 250,250,250 250,250,250 252,252,252 253,253,253 246,246,246 251,251,251 247,247,247 246,246,246 248,248,248 235,235,235 64,64,64 81,81,81 224,224,224 219,219,219 211,211,211 216,216,216 226,226,226 244,244,244 247,247,247 249,249,249 251,251,251 251,251,251 252,252,252 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -253,253,253 250,250,250 242,242,242 236,236,236 241,241,241 237,237,237 244,244,244 253,253,253 252,252,252 253,253,253 253,253,253 249,249,249 248,248,248 252,252,252 254,254,254 252,252,252 252,252,252 252,252,252 254,254,254 254,254,254 250,250,250 248,248,248 249,249,249 249,249,249 251,251,251 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 253,253,253 254,254,254 253,253,253 254,254,254 252,252,252 251,251,251 250,250,250 252,252,252 254,254,254 253,253,253 253,253,253 253,253,253 240,240,240 236,236,236 247,247,247 252,252,252 253,253,253 250,250,250 253,253,253 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 252,252,252 247,247,247 248,248,248 252,252,252 252,252,252 252,252,252 249,249,249 250,250,250 249,249,249 246,246,246 246,246,246 250,250,250 252,252,252 254,254,254 253,253,253 252,252,252 253,253,253 254,254,254 251,251,251 245,245,245 245,245,245 247,247,247 240,240,240 85,85,85 116,116,116 230,230,230 240,240,240 242,242,242 245,245,245 248,248,248 249,249,249 245,245,245 244,244,244 250,250,250 251,251,251 252,252,252 254,254,254 254,254,254 253,253,253 252,252,252 252,252,252 254,254,254 255,255,255 255,255,255 255,255,255 -254,254,254 252,252,252 244,244,244 246,246,246 246,246,246 250,250,250 254,254,254 249,249,249 253,253,253 254,254,254 252,252,252 249,249,249 249,249,249 252,252,252 254,254,254 253,253,253 251,251,251 252,252,252 248,248,248 246,246,246 250,250,250 248,248,248 245,245,245 250,250,250 252,252,252 254,254,254 251,251,251 249,249,249 253,253,253 253,253,253 248,248,248 247,247,247 253,253,253 254,254,254 253,253,253 250,250,250 250,250,250 252,252,252 254,254,254 253,253,253 252,252,252 241,241,241 237,237,237 234,234,234 236,236,236 253,253,253 253,253,253 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 250,250,250 251,251,251 246,246,246 244,244,244 250,250,250 241,241,241 249,249,249 247,247,247 247,247,247 251,251,251 253,253,253 254,254,254 253,253,253 251,251,251 252,252,252 248,248,248 251,251,251 248,248,248 252,252,252 253,253,253 247,247,247 84,84,84 98,98,98 240,240,240 248,248,248 237,237,237 236,236,236 251,251,251 251,251,251 251,251,251 251,251,251 252,252,252 252,252,252 253,253,253 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -251,251,251 254,254,254 253,253,253 250,250,250 237,237,237 248,248,248 253,253,253 253,253,253 254,254,254 255,255,255 251,251,251 250,250,250 250,250,250 253,253,253 254,254,254 253,253,253 251,251,251 253,253,253 254,254,254 253,253,253 251,251,251 248,248,248 247,247,247 251,251,251 249,249,249 253,253,253 253,253,253 253,253,253 254,254,254 252,252,252 249,249,249 250,250,250 253,253,253 254,254,254 253,253,253 250,250,250 250,250,250 252,252,252 254,254,254 252,252,252 250,250,250 249,249,249 246,246,246 243,243,243 249,249,249 253,253,253 253,253,253 252,252,252 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 243,243,243 244,244,244 251,251,251 251,251,251 251,251,251 251,251,251 250,250,250 249,249,249 248,248,248 250,250,250 253,253,253 253,253,253 254,254,254 250,250,250 251,251,251 253,253,253 246,246,246 252,252,252 252,252,252 255,255,255 252,252,252 246,246,246 121,121,121 120,120,120 237,237,237 252,252,252 253,253,253 253,253,253 253,253,253 247,247,247 246,246,246 254,254,254 254,254,254 254,254,254 252,252,252 252,252,252 254,254,254 255,255,255 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 -253,253,253 253,253,253 253,253,253 251,251,251 252,252,252 254,254,254 253,253,253 242,242,242 253,253,253 253,253,253 250,250,250 249,249,249 250,250,250 253,253,253 254,254,254 253,253,253 249,249,249 253,253,253 254,254,254 253,253,253 251,251,251 250,250,250 252,252,252 253,253,253 249,249,249 254,254,254 254,254,254 254,254,254 252,252,252 243,243,243 242,242,242 249,249,249 253,253,253 254,254,254 253,253,253 250,250,250 250,250,250 252,252,252 253,253,253 252,252,252 252,252,252 253,253,253 244,244,244 242,242,242 251,251,251 253,253,253 252,252,252 250,250,250 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 252,252,252 251,251,251 248,248,248 245,245,245 246,246,246 252,252,252 251,251,251 248,248,248 249,249,249 252,252,252 251,251,251 250,250,250 250,250,250 251,251,251 252,252,252 252,252,252 253,253,253 250,250,250 249,249,249 250,250,250 252,252,252 234,234,234 239,239,239 250,250,250 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 253,253,253 252,252,252 251,251,251 251,251,251 251,251,251 251,251,251 253,253,253 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -253,253,253 247,247,247 254,254,254 250,250,250 254,254,254 252,252,252 253,253,253 252,252,252 253,253,253 253,253,253 251,251,251 250,250,250 251,251,251 253,253,253 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 253,253,253 249,249,249 252,252,252 253,253,253 252,252,252 253,253,253 253,253,253 246,246,246 248,248,248 252,252,252 250,250,250 246,246,246 248,248,248 254,254,254 254,254,254 253,253,253 251,251,251 251,251,251 252,252,252 253,253,253 253,253,253 248,248,248 253,253,253 245,245,245 248,248,248 253,253,253 253,253,253 252,252,252 252,252,252 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 252,252,252 251,251,251 253,253,253 246,246,246 252,252,252 252,252,252 252,252,252 252,252,252 249,249,249 250,250,250 251,251,251 254,254,254 253,253,253 252,252,252 250,250,250 252,252,252 249,249,249 247,247,247 252,252,252 254,254,254 253,253,253 251,251,251 250,250,250 248,248,248 245,245,245 253,253,253 253,253,253 253,253,253 254,254,254 252,252,252 252,252,252 252,252,252 248,248,248 250,250,250 250,250,250 251,251,251 251,251,251 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 255,255,255 255,255,255 255,255,255 -254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 254,254,254 254,254,254 254,254,254 255,255,255 254,254,254 253,253,253 254,254,254 253,253,253 251,251,251 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 254,254,254 253,253,253 253,253,253 253,253,253 254,254,254 253,253,253 255,255,255 254,254,254 254,254,254 254,254,254 254,254,254 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/99_original.txt b/ReCapcha/Test/bin/Debug/experiment/99_original.txt deleted file mode 100644 index 657a16e..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/99_original.txt +++ /dev/null @@ -1,40 +0,0 @@ -248,255,252 248,255,252 250,255,252 251,255,252 253,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 253,255,254 251,255,252 250,255,252 248,255,252 248,255,252 248,255,255 248,255,255 250,255,255 251,255,255 253,253,255 255,253,255 255,252,255 255,252,255 255,251,255 255,251,255 255,251,255 253,251,255 251,252,255 250,252,255 248,253,255 250,253,255 253,253,255 253,254,255 251,253,255 248,255,255 248,255,247 248,255,249 250,252,255 253,252,255 255,255,248 255,255,251 255,246,255 255,246,255 255,255,251 253,255,244 250,255,251 250,255,255 253,254,255 255,254,255 255,253,255 255,255,255 255,255,254 255,255,251 255,255,251 255,255,249 255,255,248 255,255,248 255,255,249 255,255,249 255,255,252 255,255,252 255,254,255 255,254,255 255,255,254 253,255,254 253,255,254 253,255,254 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 253,255,254 253,255,254 253,255,254 255,255,252 255,255,252 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,252 255,255,252 255,255,254 255,255,254 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -248,255,252 248,255,252 250,255,252 251,255,252 253,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 253,255,254 251,255,254 250,255,252 250,255,252 248,255,252 248,255,254 248,255,254 250,255,255 251,255,255 253,254,255 255,254,255 255,253,255 255,253,255 255,252,255 255,252,255 255,251,255 253,252,255 251,253,255 250,253,255 250,253,255 250,253,255 253,254,255 253,254,255 251,254,255 250,255,255 248,255,247 248,255,249 251,252,255 253,252,255 255,255,248 255,255,251 255,247,255 255,247,255 255,255,252 253,255,245 250,255,251 250,255,255 253,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,252 255,255,251 255,255,249 255,255,249 255,255,249 255,255,249 255,255,251 255,255,252 255,255,254 255,254,255 255,254,255 255,255,255 253,255,254 253,255,254 253,255,254 253,255,254 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 251,255,252 253,255,254 253,255,254 253,255,254 255,255,254 255,255,252 255,255,251 255,255,252 255,255,251 255,255,252 255,255,252 255,255,252 255,255,252 255,255,254 255,255,254 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -250,255,254 250,255,254 251,255,254 251,255,254 253,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,255,255 255,255,255 253,255,254 251,255,254 250,255,254 250,255,254 250,255,252 250,255,252 250,255,252 251,255,254 251,255,254 253,255,255 255,255,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 253,254,255 251,254,255 250,254,255 250,254,255 251,254,255 255,254,255 255,254,255 253,253,255 250,255,255 250,255,247 250,255,249 251,252,255 255,251,255 255,255,249 255,255,251 255,248,255 255,248,255 255,255,254 253,255,248 251,255,254 251,255,255 255,254,255 255,253,255 255,254,255 255,255,255 255,255,254 255,255,252 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,252 255,255,254 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 253,255,254 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,252 255,255,254 255,255,252 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -251,255,255 251,255,254 251,255,255 253,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 253,255,255 251,255,254 251,255,255 250,255,254 251,255,251 251,255,251 251,255,251 253,255,252 255,255,252 255,255,252 255,255,254 255,255,254 255,254,255 255,254,255 255,255,255 255,255,255 253,255,255 251,255,255 251,255,255 251,255,255 255,254,255 255,254,255 253,252,255 251,255,255 251,255,248 251,255,249 253,252,255 255,251,255 255,255,251 255,255,252 255,249,255 255,249,255 255,255,255 255,255,251 253,255,255 253,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,252 255,255,251 255,255,252 255,255,252 255,255,252 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 255,255,255 253,255,254 255,255,255 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,254 255,254,255 255,255,254 255,255,254 255,255,254 255,255,255 255,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 253,255,255 253,255,255 251,255,254 253,255,251 253,255,249 253,255,249 255,255,251 255,255,251 255,255,251 255,255,252 255,255,252 255,255,252 255,255,252 255,255,254 255,255,254 255,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,254,255 255,252,255 253,254,255 253,255,249 253,255,249 255,251,255 255,251,255 255,255,252 255,255,252 255,251,255 255,250,255 255,254,255 255,255,254 255,254,255 255,254,255 255,253,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,252 255,255,254 255,255,254 255,255,255 255,254,255 255,254,255 255,253,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,255,255 255,254,255 255,255,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 253,255,255 255,255,252 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,251 255,255,252 255,255,252 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,255 255,252,255 255,253,255 255,255,251 255,255,251 255,252,255 255,252,255 255,255,254 253,255,252 255,254,255 255,253,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 255,255,254 255,255,255 255,254,255 255,254,255 255,253,255 255,254,255 255,253,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,253,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,254,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,254 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -255,253,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,253,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,254 255,255,252 255,255,252 255,255,252 255,255,252 255,255,252 255,255,252 255,255,252 255,255,252 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,255,252 255,255,254 255,251,255 255,251,255 255,255,251 255,255,251 255,253,255 255,252,255 253,255,254 251,255,251 251,255,251 251,255,254 255,253,255 255,252,255 255,252,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 255,253,255 253,253,255 255,252,255 255,253,255 255,254,255 255,255,255 255,254,255 255,254,255 255,253,255 255,253,255 255,253,255 255,253,255 255,252,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,255,255 255,254,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -255,253,255 255,253,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,254 255,254,255 255,255,255 255,255,255 255,254,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,252 255,255,254 255,255,254 255,255,254 255,255,255 255,255,255 255,254,255 255,253,255 255,255,255 255,255,251 255,255,254 255,251,255 255,250,255 255,255,252 255,255,251 255,253,255 255,253,255 250,255,255 248,255,249 248,255,244 248,255,247 251,254,255 255,251,255 255,252,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,254,255 253,254,255 253,254,255 253,253,255 253,253,255 253,254,255 253,255,255 255,255,255 255,255,255 255,254,255 255,253,255 255,253,255 255,252,255 255,252,255 255,252,255 255,252,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,253,255 255,254,255 255,253,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 -255,253,255 254,250,255 252,248,253 255,252,254 255,255,255 255,255,254 255,255,254 251,252,248 255,255,254 253,254,252 254,255,253 252,252,252 249,246,248 255,251,255 255,253,255 255,252,255 255,252,255 253,248,255 254,250,255 255,253,255 255,254,255 252,251,253 250,250,250 254,255,253 252,250,250 251,251,251 253,253,253 255,254,255 255,253,255 255,253,255 255,252,255 255,253,255 255,255,251 255,255,252 255,250,255 255,249,255 255,254,254 255,255,251 255,254,255 253,254,255 248,255,255 244,255,248 243,255,237 242,255,238 248,255,255 253,251,255 255,250,255 255,250,251 255,254,255 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 253,255,255 253,255,255 253,255,255 250,254,255 249,253,254 250,253,255 249,252,255 247,251,252 251,255,254 248,251,249 246,249,247 252,252,252 255,252,254 255,249,254 255,252,255 255,252,255 255,252,255 255,252,255 255,253,255 255,253,255 252,252,252 251,254,252 253,255,254 253,255,254 253,255,255 253,255,255 249,248,252 247,249,250 254,253,255 255,254,255 255,254,255 252,251,253 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,253,255 255,253,255 255,253,255 255,254,255 250,251,249 248,252,247 253,255,252 253,255,251 253,255,251 253,255,252 253,255,252 255,255,254 255,254,255 255,253,255 253,249,254 254,249,255 255,251,255 255,250,255 255,250,255 255,252,255 255,254,255 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 250,249,251 246,245,249 248,244,250 250,245,254 251,250,254 253,255,249 253,255,252 255,249,255 255,248,255 255,253,255 255,255,251 255,255,255 251,255,255 235,249,245 239,255,245 237,255,228 237,255,231 246,255,255 242,242,255 255,253,255 255,254,254 255,255,254 255,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 244,246,247 249,251,252 251,255,255 251,255,255 251,255,255 251,255,255 251,255,255 249,255,253 250,255,252 251,255,252 251,255,252 253,255,254 255,254,255 255,253,255 254,248,253 253,245,252 255,249,255 255,251,255 255,253,255 255,254,255 253,255,254 251,255,252 247,253,248 243,249,244 242,247,245 251,253,253 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -250,249,253 251,250,254 252,251,253 252,254,254 253,255,252 251,255,251 248,255,246 246,254,244 247,255,245 245,253,243 241,248,241 248,252,247 253,255,255 252,251,253 251,250,254 255,253,255 255,251,255 255,251,255 255,251,255 250,249,255 247,248,252 246,250,251 245,250,249 242,247,245 246,251,249 250,255,253 251,255,255 253,255,255 253,254,255 255,253,255 255,252,255 253,255,255 251,255,248 251,255,252 255,249,255 255,247,255 255,253,255 255,255,251 255,255,252 250,255,252 238,255,251 236,255,242 168,213,156 183,221,171 243,255,254 248,250,255 255,254,255 255,254,249 255,255,252 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 253,255,255 253,255,255 250,255,253 247,254,251 246,253,248 245,252,247 245,253,246 244,255,245 241,252,242 244,255,245 247,255,248 247,253,248 253,253,253 255,254,255 255,253,255 255,253,255 255,253,255 255,252,255 253,250,252 251,251,251 250,255,251 250,255,251 248,255,249 248,255,249 251,255,251 251,255,252 251,255,252 247,253,248 243,248,246 245,250,248 253,255,254 253,255,254 253,255,254 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -253,252,255 253,255,255 253,255,255 251,255,254 251,255,251 250,255,249 250,255,248 245,255,244 248,255,247 250,255,248 250,255,249 247,254,247 251,255,254 252,254,254 250,249,251 255,253,255 248,244,255 252,251,255 253,252,255 251,254,255 251,255,255 250,255,254 250,255,252 248,255,251 242,253,245 245,253,246 247,254,249 249,254,252 247,252,251 247,249,250 246,245,249 243,245,245 248,255,248 250,255,252 255,248,255 255,247,255 255,252,255 255,255,251 255,255,251 248,255,251 237,255,252 226,255,236 88,144,73 115,165,101 237,255,249 248,252,255 255,255,251 250,245,236 255,255,252 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 253,255,255 253,255,255 251,255,254 249,255,251 250,255,251 250,255,249 248,255,248 248,255,247 246,255,247 246,255,247 246,255,248 248,255,249 248,255,249 250,253,251 255,255,255 255,254,255 255,253,255 255,253,255 255,254,255 254,254,254 250,253,251 246,254,247 245,255,246 244,255,246 245,255,247 250,255,248 251,255,249 251,255,249 251,255,249 251,255,251 251,255,251 251,255,249 244,248,243 253,255,252 253,255,254 255,255,255 255,255,255 255,255,255 255,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -252,254,255 253,255,255 253,255,255 251,255,252 241,250,240 236,248,236 242,255,241 246,255,245 233,249,232 246,255,245 248,255,248 248,255,247 251,255,252 251,255,255 253,255,255 246,247,251 253,253,255 253,253,255 253,254,255 248,253,252 247,254,249 248,255,249 246,255,248 244,255,243 246,255,245 246,255,245 246,255,245 246,255,244 250,255,250 251,255,252 253,255,254 251,255,252 246,255,247 248,255,252 255,248,255 255,246,255 255,252,255 255,255,251 253,255,249 244,255,249 234,255,251 223,255,235 68,134,52 95,154,79 229,255,241 245,253,255 255,255,248 255,255,244 255,255,251 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 253,255,255 251,254,252 248,254,249 249,255,248 250,255,248 248,255,245 243,255,241 239,255,235 240,255,236 233,253,234 238,255,240 244,255,246 246,255,247 250,255,251 255,255,255 255,253,255 252,249,251 252,249,251 255,254,255 255,255,255 251,255,252 248,255,249 243,255,245 237,255,239 237,255,238 244,255,241 245,255,240 245,255,240 246,255,243 248,255,246 249,255,247 249,255,247 248,255,248 253,255,252 253,255,254 255,255,255 255,255,255 255,254,255 255,254,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -250,252,253 246,251,250 245,250,248 249,255,250 248,255,249 246,255,247 244,255,244 240,255,239 244,255,244 244,255,244 246,255,247 247,255,247 240,247,242 251,255,254 253,255,255 248,250,251 253,254,255 251,255,255 247,252,251 246,253,248 243,254,244 241,255,240 243,255,243 243,255,241 243,255,240 242,255,239 245,255,241 248,255,244 250,255,247 251,255,248 253,255,249 247,255,245 244,255,245 246,255,252 255,248,255 255,245,255 255,251,255 255,255,251 253,255,247 243,255,247 230,255,251 219,255,232 72,145,53 97,165,78 230,255,243 244,255,255 255,255,244 255,255,241 255,255,249 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 253,255,254 251,255,252 248,255,248 246,255,244 248,255,245 246,255,242 246,255,241 246,255,240 244,255,240 241,255,242 241,255,244 244,255,247 245,255,247 249,255,250 249,252,250 253,253,253 255,254,255 253,250,252 253,253,253 253,255,254 250,255,251 248,255,249 244,255,247 241,255,244 243,255,242 246,255,242 248,255,242 250,255,242 250,255,244 247,255,242 245,255,242 251,255,248 251,255,249 253,255,251 253,255,252 255,255,254 255,255,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 -251,255,255 251,255,255 249,255,250 247,255,246 243,255,245 241,255,242 239,255,238 235,255,235 243,255,242 226,247,225 241,255,242 246,255,247 242,250,243 241,248,243 251,255,255 244,249,248 248,253,252 241,247,242 246,253,246 250,255,248 246,255,245 243,255,240 239,255,236 241,255,237 240,255,234 243,255,237 244,255,238 246,255,240 246,255,238 244,255,238 248,255,244 250,255,245 244,255,244 244,255,252 253,247,255 255,245,255 255,251,255 255,255,249 251,255,245 241,255,245 227,255,249 209,255,222 68,145,47 94,165,72 230,255,242 243,255,255 250,255,237 254,253,232 255,255,249 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 253,255,254 251,255,252 247,255,245 246,255,243 248,255,244 246,255,241 240,255,232 236,255,229 240,255,234 238,255,239 230,255,233 237,255,239 244,255,247 250,255,251 248,254,249 250,250,250 255,255,255 255,255,255 254,254,254 246,252,247 243,254,244 244,255,246 241,255,243 232,255,235 229,253,229 246,255,240 245,255,237 243,255,236 245,255,238 250,255,242 250,255,244 250,255,246 246,254,243 253,255,251 253,255,252 255,255,254 255,255,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 -247,248,246 251,255,251 244,255,245 197,226,200 141,182,145 131,176,133 173,216,171 220,255,218 133,166,131 112,139,113 173,195,177 244,255,249 245,255,249 244,251,248 253,255,254 252,255,251 250,255,249 246,255,246 248,255,248 246,255,247 230,248,231 182,206,182 147,178,145 139,177,135 135,181,129 134,183,127 135,182,126 134,177,126 145,179,138 176,203,170 219,241,217 244,255,244 244,255,244 246,255,252 253,249,255 255,246,255 255,251,255 255,255,251 253,255,245 244,255,245 234,255,252 206,255,218 69,158,49 86,171,67 222,255,233 244,255,255 255,255,241 255,255,242 255,255,249 255,255,254 255,254,255 255,254,255 255,253,255 255,253,255 255,253,255 255,255,255 251,255,254 249,255,248 244,255,245 241,255,240 208,239,206 154,191,151 108,150,103 88,128,86 93,128,94 113,139,115 167,183,166 231,241,229 250,255,251 251,255,254 253,252,254 255,254,255 255,254,253 252,255,251 250,255,249 246,255,248 244,255,247 216,245,220 167,212,169 137,184,135 237,255,227 193,224,179 136,169,124 119,155,109 150,186,142 197,232,192 232,255,230 243,255,241 248,255,247 253,255,252 255,255,255 255,254,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,251,244 253,255,244 232,255,233 139,205,146 55,142,62 60,154,65 132,216,127 79,150,70 77,128,70 99,136,98 186,212,196 241,255,255 238,249,253 243,248,251 255,255,254 244,248,237 244,255,239 241,255,240 243,255,245 241,255,248 224,247,233 143,175,151 86,132,90 95,158,96 78,159,74 82,173,74 70,165,61 67,156,60 68,142,66 113,171,116 207,248,216 236,255,244 244,255,245 250,255,252 255,251,255 255,249,255 255,251,255 255,255,252 255,255,245 253,255,247 248,254,255 221,255,230 51,157,37 70,175,58 225,255,238 251,251,255 255,251,253 255,255,249 255,255,251 255,255,252 255,254,255 255,253,255 255,251,255 255,250,255 255,250,255 255,253,255 253,255,255 246,255,249 237,255,241 197,241,204 86,143,92 60,131,68 62,143,70 67,142,74 83,132,88 99,124,98 146,145,135 255,249,246 255,255,252 250,252,253 255,249,255 255,251,255 255,255,252 255,255,247 248,255,244 242,255,242 244,255,247 226,255,228 62,147,63 70,162,61 144,209,124 90,148,67 82,151,64 86,162,74 63,145,56 65,144,63 167,233,168 224,255,227 239,255,242 251,255,252 255,251,255 255,250,255 255,252,255 255,255,252 255,255,247 255,255,247 255,255,252 255,255,255 255,255,255 255,255,255 -255,255,248 245,255,235 222,255,223 107,193,115 42,152,50 18,134,21 74,176,68 90,170,79 160,215,152 167,204,166 216,241,227 241,255,255 242,252,255 247,251,255 255,255,254 255,255,248 251,255,242 248,255,242 247,255,246 244,253,250 246,255,255 239,255,249 220,255,227 220,255,223 209,255,206 186,255,179 158,255,149 64,155,56 78,153,75 205,255,206 232,255,240 228,248,235 246,255,248 251,255,252 255,253,255 255,250,255 255,251,255 255,254,254 255,255,245 255,255,248 255,251,255 225,255,233 45,159,36 62,178,55 225,255,237 253,250,255 255,250,255 255,254,254 255,255,252 251,255,254 253,255,255 255,253,255 255,251,255 255,250,255 255,250,255 255,253,255 248,251,249 244,255,245 232,255,233 96,149,99 64,135,68 69,154,72 168,255,171 200,255,205 215,255,218 228,255,226 237,237,223 255,255,251 255,255,251 247,252,251 255,249,255 255,248,255 255,255,252 255,255,247 250,255,242 244,255,242 246,255,248 224,255,227 54,154,52 59,168,52 100,166,84 181,235,165 216,255,206 199,255,194 145,239,145 38,130,41 73,152,79 220,255,226 237,255,241 251,255,252 255,251,255 255,249,255 255,251,255 255,255,251 255,255,245 255,255,244 255,255,252 255,255,255 255,255,255 255,255,255 -255,255,248 236,252,228 219,255,219 78,166,83 56,165,62 51,163,53 133,226,127 204,255,195 230,255,224 229,255,227 238,255,246 243,255,255 242,254,254 245,250,251 255,255,254 255,255,252 255,251,249 255,253,255 255,249,255 255,247,255 255,248,255 255,251,255 246,255,252 237,255,241 224,255,224 197,255,195 81,139,74 102,154,94 217,252,208 244,255,236 255,255,251 255,254,255 251,255,252 251,255,254 255,252,255 255,251,255 255,252,255 255,254,254 255,255,245 255,255,248 255,252,255 225,255,233 45,158,37 64,177,56 225,255,235 253,251,255 255,251,254 255,254,254 250,255,254 244,255,255 248,255,255 251,254,255 255,252,255 255,252,255 255,253,255 255,255,254 251,255,247 230,252,224 237,255,227 88,142,77 66,135,54 81,164,66 188,255,173 198,255,187 211,255,213 227,255,227 227,242,215 242,245,229 238,248,235 248,255,252 255,251,255 255,250,255 255,255,254 255,255,248 251,255,245 246,255,245 250,255,251 228,255,229 57,152,55 64,161,64 218,255,221 239,255,247 225,255,235 202,255,214 209,255,223 111,186,124 56,121,66 182,230,188 239,255,242 251,255,251 255,252,255 255,251,255 255,253,255 255,255,252 253,255,247 251,255,247 253,255,252 255,255,255 255,255,255 255,255,255 -255,255,248 244,255,238 214,255,213 54,141,55 47,152,47 79,182,77 194,255,190 223,255,217 237,255,233 244,255,244 241,255,246 242,255,250 246,255,252 245,252,249 249,247,247 255,250,255 255,239,253 255,241,255 255,247,255 255,247,255 255,247,255 252,250,250 245,255,244 232,255,231 180,220,178 67,115,63 100,145,96 212,246,205 248,255,240 255,255,247 255,242,251 255,249,255 255,255,255 250,255,254 253,252,255 255,252,255 255,253,255 255,255,252 255,255,247 255,255,248 255,253,255 227,255,231 47,156,40 64,176,58 225,255,234 253,252,255 255,252,253 255,254,254 251,255,255 248,255,255 251,254,255 253,253,255 255,253,255 255,253,255 255,255,255 255,255,249 245,255,237 243,255,233 224,255,211 87,146,72 70,147,55 65,155,49 76,176,56 116,216,104 181,255,184 216,255,219 241,255,231 250,255,238 244,255,242 244,255,249 250,249,255 246,237,250 255,253,255 255,255,251 253,255,248 249,255,246 251,255,254 230,255,231 59,150,57 68,157,71 237,255,251 235,236,255 237,255,255 227,255,247 212,255,229 116,175,130 71,126,81 176,220,181 243,255,241 251,255,248 255,255,254 255,253,255 255,253,255 255,255,254 250,255,249 248,255,249 253,255,254 255,255,255 255,255,255 255,255,255 -242,251,241 238,255,237 192,255,190 62,150,60 49,150,45 101,194,95 216,255,213 216,255,214 238,255,238 250,255,251 246,255,247 244,255,247 246,255,248 248,255,251 249,248,250 255,251,255 255,246,255 255,245,255 255,245,255 251,249,248 251,255,242 243,255,231 230,255,217 188,242,175 81,144,72 107,170,100 206,255,201 232,255,230 234,253,232 255,255,254 255,248,255 255,240,255 255,254,255 250,255,255 253,253,255 255,253,255 255,254,255 255,255,252 255,255,247 255,255,248 255,254,255 229,255,231 49,154,43 66,174,62 227,255,232 251,255,255 255,253,252 255,255,252 255,253,255 255,252,255 255,252,255 255,251,255 255,251,255 255,253,255 255,255,254 255,255,248 246,255,241 228,255,222 227,255,220 165,237,160 76,166,70 47,153,40 35,153,28 38,157,35 51,157,58 115,197,122 214,255,206 243,255,233 239,255,238 230,250,237 249,251,255 255,249,255 255,252,255 255,255,252 255,255,249 251,255,249 253,255,255 230,255,232 59,150,57 70,155,73 243,255,255 229,217,253 244,251,255 236,255,254 221,255,235 139,189,147 94,141,95 163,201,159 244,255,237 251,255,242 255,255,251 255,254,255 255,254,255 253,255,255 246,255,255 246,255,254 251,255,255 255,255,255 255,255,255 255,255,255 -244,255,249 232,255,234 152,219,150 75,163,69 61,156,52 137,220,128 225,255,223 236,255,237 246,253,250 255,254,255 251,255,251 246,255,245 246,255,244 247,255,247 251,252,255 255,250,255 255,247,255 255,249,255 253,250,252 243,255,237 243,255,231 232,255,216 153,208,139 69,132,58 78,144,72 216,255,215 220,255,223 215,252,218 246,255,245 255,254,253 255,249,255 255,250,255 255,254,255 250,255,255 251,254,255 253,254,255 255,254,255 255,255,252 255,255,247 255,255,249 255,254,255 230,255,231 51,151,49 68,171,66 227,255,231 251,255,254 255,254,250 255,255,252 255,254,254 255,253,255 255,252,255 255,252,255 255,251,255 255,253,255 255,254,255 253,255,254 240,254,242 237,255,241 227,255,231 213,255,220 195,255,203 121,214,129 61,166,69 45,154,55 41,149,53 69,157,74 180,229,173 239,255,231 236,255,237 233,255,241 250,253,255 255,249,255 255,252,255 255,254,254 255,255,251 251,255,249 251,255,255 228,255,231 57,151,56 68,158,69 241,255,252 255,247,255 248,254,255 230,253,238 229,255,232 133,179,132 90,136,84 184,222,174 244,255,233 251,255,240 255,255,248 255,255,254 255,254,255 250,255,255 246,255,255 246,255,255 251,255,255 255,255,255 255,255,255 255,255,255 -239,255,251 232,255,238 125,193,122 67,151,57 55,143,43 166,238,156 227,255,224 246,255,249 255,250,255 255,250,255 253,255,252 247,255,241 242,255,237 245,255,244 253,253,255 255,250,255 247,237,249 255,253,255 255,255,247 248,255,237 233,255,221 170,215,159 107,161,102 88,146,91 218,255,228 196,247,210 228,255,244 239,255,248 249,254,245 255,255,251 255,242,237 255,254,251 255,255,255 248,255,255 250,255,255 251,255,255 251,255,255 253,255,251 253,255,248 255,255,249 255,254,255 232,255,233 54,148,54 71,168,72 229,255,231 251,255,251 255,255,249 255,255,251 248,255,251 244,255,252 246,255,254 248,255,255 250,253,255 250,252,255 251,251,255 250,251,255 246,252,255 233,244,252 217,238,239 230,255,252 223,255,247 212,255,236 197,254,221 102,175,125 54,148,71 41,128,48 157,206,152 228,255,220 237,255,238 241,255,248 251,252,255 252,242,255 255,252,255 255,254,254 255,255,249 249,255,247 250,255,252 224,255,228 52,154,52 63,164,59 233,255,225 251,255,242 240,255,230 235,255,225 232,255,219 125,177,113 86,136,72 188,229,172 243,255,228 250,255,237 253,255,245 255,255,252 253,255,255 250,254,255 246,254,255 246,255,255 251,255,255 255,255,255 255,255,255 255,255,255 -225,248,240 230,255,240 122,187,118 66,144,56 72,149,57 218,255,207 224,249,223 253,254,255 255,246,255 255,244,255 253,254,250 250,255,244 243,255,237 248,255,245 253,253,255 249,244,255 255,253,255 251,255,251 244,255,240 230,255,221 164,216,152 74,139,64 94,166,90 204,255,209 212,255,224 215,255,233 217,255,234 236,255,247 248,255,248 249,249,237 255,255,244 255,254,244 255,255,255 250,255,255 250,255,255 250,255,255 250,255,254 251,255,251 253,255,249 255,255,251 255,254,255 236,255,234 58,143,61 75,164,78 231,255,231 253,255,249 255,255,249 255,255,252 250,255,252 246,255,254 248,255,255 248,255,255 250,254,255 250,253,255 250,252,255 248,254,255 237,245,252 241,255,255 208,231,223 230,255,248 216,255,233 220,255,238 213,255,230 114,181,130 58,144,72 55,133,62 195,234,188 244,255,235 238,255,239 232,249,240 253,251,255 255,248,255 255,252,255 255,255,252 253,255,248 246,255,245 244,255,249 221,255,225 48,157,49 57,169,51 216,255,198 237,255,214 234,255,213 234,255,213 204,255,186 83,137,67 107,157,93 236,255,221 243,255,230 248,255,238 251,255,247 253,255,252 253,255,255 251,254,255 248,254,255 250,255,255 253,255,255 255,255,255 255,255,255 255,255,255 -231,253,248 232,255,241 89,148,87 72,141,60 74,140,59 232,255,219 242,255,239 255,250,255 255,244,255 255,246,255 255,255,254 250,255,244 246,255,240 248,255,245 255,252,255 251,251,255 241,255,255 232,255,249 225,255,233 151,215,149 50,137,41 65,166,51 128,236,116 134,241,125 142,241,143 148,234,156 147,215,160 162,213,175 206,241,214 241,255,242 246,255,244 245,255,243 250,255,255 250,254,255 250,255,255 248,255,254 248,255,252 250,255,251 251,255,252 255,255,254 255,247,249 248,255,242 66,142,71 76,158,83 235,255,232 253,255,247 255,255,250 255,252,253 255,251,255 255,250,255 255,250,255 255,251,255 255,253,255 255,255,252 255,255,248 250,255,241 243,255,235 191,228,182 79,130,68 96,161,85 123,202,111 104,193,90 108,205,95 51,146,42 54,139,59 137,198,142 227,252,218 253,255,242 246,255,247 248,255,254 255,249,255 255,247,255 255,253,255 255,255,249 245,255,240 243,255,244 239,255,245 209,255,215 48,164,51 41,165,35 91,166,68 141,194,114 206,255,181 185,243,164 88,147,72 88,142,75 178,227,171 234,255,230 241,255,238 246,255,245 250,255,251 253,255,255 253,255,255 253,255,255 253,255,255 253,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -239,255,255 219,247,227 81,133,80 67,127,57 111,165,96 237,255,226 247,252,243 255,244,255 255,244,255 255,247,255 255,255,254 248,255,244 246,255,241 248,255,247 255,252,255 255,250,255 244,253,255 234,255,250 217,255,226 150,208,149 62,141,54 51,142,39 70,167,57 54,149,45 58,143,58 66,138,72 75,130,85 112,154,123 185,213,193 239,255,245 246,255,247 248,255,249 251,254,255 251,254,255 250,255,255 248,255,252 248,255,251 250,255,251 253,255,254 255,254,255 255,252,255 244,251,236 74,139,83 82,152,91 225,254,221 255,255,247 255,255,252 251,244,249 255,250,255 255,249,255 255,249,255 255,251,255 255,253,255 255,255,251 255,255,245 250,255,238 243,255,231 204,242,190 106,157,90 84,148,66 72,146,52 52,136,31 84,174,61 75,161,61 154,223,156 205,249,208 253,255,242 255,255,248 248,255,248 247,252,253 253,247,255 255,245,255 255,251,252 255,255,248 240,255,238 240,255,241 237,255,243 216,255,223 48,164,51 56,180,50 159,241,142 109,168,87 74,133,58 76,133,64 98,152,92 166,215,165 225,255,229 229,255,235 241,255,248 244,255,254 250,255,255 253,255,255 255,255,255 255,255,254 255,255,251 255,255,251 255,255,254 255,255,255 255,255,255 255,255,255 -231,243,243 239,255,248 232,255,231 228,255,223 234,255,223 243,255,233 255,253,248 255,248,255 255,245,255 255,248,255 253,255,254 246,255,247 244,255,244 250,255,248 255,252,255 255,248,255 255,241,255 255,247,253 255,255,249 244,255,238 228,255,220 234,255,228 232,255,230 231,255,232 233,255,241 243,255,252 241,245,250 240,236,247 255,247,255 255,252,255 255,253,253 255,250,250 255,252,255 253,253,255 251,255,254 248,255,249 248,255,249 250,255,251 253,255,255 255,253,255 255,235,240 255,255,248 206,255,217 205,255,219 243,255,238 255,255,246 252,249,251 255,253,255 251,254,255 251,255,255 251,254,255 251,254,255 250,255,255 250,255,255 250,255,255 248,255,252 246,255,249 244,255,247 235,255,234 231,255,228 214,244,209 195,229,189 215,251,207 224,255,220 230,255,233 239,255,240 255,255,249 255,253,255 250,250,250 247,250,255 254,248,255 255,250,255 248,246,245 253,255,247 244,255,242 241,255,242 241,255,248 222,255,230 28,136,30 42,160,41 211,255,207 203,255,201 194,244,196 198,245,206 209,249,221 230,255,247 234,255,252 237,255,255 243,255,255 246,253,255 250,253,255 253,254,255 255,255,254 255,255,251 255,255,247 255,255,248 255,255,252 255,255,255 255,255,255 255,255,255 -250,255,255 246,255,251 235,255,236 229,255,226 239,255,231 235,252,225 250,243,240 255,250,255 255,248,255 255,250,255 251,255,254 244,255,248 244,255,247 250,255,251 255,252,255 255,248,255 255,247,255 255,248,255 255,253,255 255,255,252 250,255,247 246,255,245 246,255,248 246,253,248 251,249,255 255,249,255 255,247,255 255,246,255 255,247,255 255,247,255 255,250,255 255,252,255 255,251,255 255,253,255 251,255,252 250,255,248 248,255,248 250,255,251 255,254,255 255,251,255 255,250,255 255,255,251 225,255,240 220,255,235 246,255,241 255,255,248 255,249,255 250,246,255 250,255,255 248,255,255 248,255,255 248,255,255 248,255,255 248,255,255 248,254,255 248,254,255 242,248,253 243,249,254 248,255,255 248,255,255 246,255,255 243,254,251 245,255,251 243,255,249 239,255,244 242,255,241 255,247,248 255,247,255 255,254,255 251,254,255 253,250,255 253,251,255 255,255,254 251,255,247 242,255,240 240,255,241 241,253,247 230,255,237 54,148,54 82,184,83 215,255,222 227,255,238 230,255,242 232,255,248 236,255,255 237,255,255 234,246,255 235,244,255 244,251,255 248,252,255 250,253,255 253,255,255 255,255,254 255,255,249 255,255,247 255,255,248 255,255,252 255,255,255 255,255,255 255,255,255 -255,253,255 251,253,253 238,255,241 241,255,242 244,255,241 251,255,244 255,255,252 255,245,249 255,251,255 255,253,255 248,255,254 243,255,251 243,255,251 250,255,252 255,252,255 255,249,255 255,244,255 255,247,255 250,242,252 245,247,247 246,255,249 244,255,245 242,255,240 250,255,245 254,255,247 255,255,252 255,248,251 254,243,251 255,251,255 255,251,255 244,246,255 243,244,254 255,250,255 255,252,255 253,255,251 250,255,247 248,255,248 250,255,252 255,253,255 255,249,255 255,248,255 249,237,237 219,255,238 213,255,234 234,246,228 255,255,251 255,251,255 255,245,255 255,252,255 255,254,255 255,254,255 255,253,255 255,253,255 255,254,255 253,253,255 250,254,255 248,254,255 244,253,255 244,255,255 237,250,252 234,249,251 240,255,255 230,248,247 239,255,254 239,255,248 245,255,243 255,248,252 255,250,255 255,254,255 250,255,255 249,251,255 251,252,255 247,251,246 251,255,247 247,255,244 250,255,251 253,251,255 242,255,246 61,132,59 72,151,72 227,255,238 237,255,254 227,243,242 227,239,243 246,252,255 248,251,255 250,250,255 250,250,255 250,252,255 250,253,255 251,254,255 253,255,255 255,255,252 255,255,251 255,255,251 255,255,251 255,255,254 255,255,255 255,255,255 255,255,255 -255,245,253 255,253,255 250,255,254 246,255,251 233,244,234 249,252,243 255,255,251 255,254,252 255,253,255 255,255,255 246,255,254 241,255,254 243,255,254 250,255,255 255,252,255 255,249,255 255,244,255 255,249,255 255,252,255 251,255,255 246,255,254 242,255,249 242,255,244 251,255,248 252,253,243 255,255,249 255,255,251 255,253,252 255,254,255 248,254,255 238,254,255 243,254,255 255,251,255 255,252,255 255,255,249 250,255,245 248,255,247 250,255,252 255,252,255 255,248,255 255,241,255 255,244,248 232,255,252 227,255,249 250,255,244 255,254,251 255,249,255 255,248,255 255,251,255 255,253,255 255,253,255 255,253,255 255,253,255 255,253,255 253,254,255 251,254,255 238,246,246 238,248,248 244,255,255 244,255,255 243,255,255 243,255,255 242,255,254 241,255,252 241,255,248 249,255,248 255,251,255 255,250,255 255,255,254 244,255,253 246,252,255 250,254,255 244,251,244 253,255,248 253,255,249 255,255,255 255,248,255 246,246,246 107,156,102 101,159,100 227,250,235 248,254,255 253,252,255 255,251,255 255,249,255 249,240,253 248,240,251 255,253,255 255,254,255 253,255,254 251,255,252 251,255,251 253,255,254 255,255,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,250,255 255,249,255 253,253,255 247,252,255 249,254,253 255,255,252 255,255,251 252,240,234 255,255,249 255,255,251 243,255,254 239,255,255 241,255,255 250,255,255 255,252,255 255,251,255 255,245,249 255,251,254 255,253,255 251,254,255 247,253,255 244,252,255 249,252,255 254,252,255 252,245,250 255,253,255 255,254,254 255,255,254 250,255,253 235,250,246 227,252,248 237,255,255 255,251,255 255,252,255 255,255,249 251,255,245 250,255,247 251,255,252 255,251,255 255,247,255 255,247,255 255,250,255 230,252,250 224,255,248 253,255,247 255,252,252 255,247,255 254,241,255 255,251,255 255,254,255 255,254,255 255,254,255 255,254,255 253,255,255 251,255,255 250,255,254 250,255,252 250,255,251 249,255,249 246,254,244 245,250,241 247,251,240 255,255,248 251,255,247 243,255,246 247,255,247 255,250,252 255,249,251 248,255,248 243,255,252 244,255,255 246,255,255 251,255,251 255,255,249 252,251,247 253,242,252 255,241,255 255,248,255 228,255,220 236,255,227 249,255,246 255,252,255 255,251,255 255,251,255 255,252,255 255,253,254 255,255,251 255,255,247 255,255,244 255,255,244 253,255,245 251,255,248 251,255,254 253,253,255 255,250,255 255,250,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,251,255 252,241,249 255,252,255 248,248,254 253,254,255 254,252,252 255,255,251 255,255,248 255,255,249 255,255,251 244,255,254 241,255,255 244,255,255 251,254,255 255,253,255 255,253,255 255,254,254 255,253,252 255,254,255 253,253,255 246,248,255 250,252,255 253,251,255 254,248,255 255,251,255 255,250,255 253,242,244 251,247,246 251,255,252 244,255,252 234,255,249 237,255,253 255,253,255 255,253,255 255,255,251 253,255,247 251,255,248 251,255,252 255,251,255 255,249,255 255,239,250 255,251,255 236,249,251 235,255,254 255,255,251 255,252,252 255,248,255 255,248,255 255,252,255 255,254,255 253,255,255 253,255,255 253,255,255 251,255,255 251,255,254 251,255,252 249,255,249 253,255,251 247,250,241 255,255,248 255,255,248 255,255,247 255,255,247 252,254,242 248,255,248 250,255,249 255,254,254 255,251,253 251,255,251 244,255,252 246,255,255 244,252,252 245,251,246 253,255,249 255,254,255 255,250,255 255,243,255 255,242,255 248,255,242 244,255,237 255,255,251 255,251,254 255,251,255 255,252,255 255,250,251 255,253,250 255,255,247 255,253,238 255,255,242 255,255,242 253,255,245 251,255,248 253,255,254 253,253,255 255,250,255 255,250,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,254 255,255,254 255,255,254 255,255,254 251,255,255 250,255,255 251,255,255 253,255,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,254,255 253,254,255 253,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 253,255,254 251,255,254 250,255,254 250,255,255 255,254,255 255,254,255 255,255,254 255,255,252 253,255,252 253,255,254 255,254,255 255,253,255 255,253,255 255,253,255 251,255,255 250,255,255 255,255,254 255,254,255 255,253,255 255,253,255 255,254,255 255,255,255 255,255,255 255,255,255 255,255,255 253,255,255 253,255,255 253,255,254 253,255,254 255,255,254 255,255,254 255,255,252 255,255,252 255,255,252 255,255,252 255,255,252 253,255,252 253,255,254 255,254,255 255,254,255 253,255,254 251,255,254 251,255,255 253,255,255 253,255,254 255,255,254 255,255,255 255,254,255 255,251,255 255,253,255 253,255,251 251,255,249 255,255,254 255,254,255 255,254,255 255,254,255 255,254,255 255,255,254 255,255,252 255,255,251 255,255,251 255,255,251 255,255,252 253,255,252 255,255,255 255,254,255 255,254,255 255,254,255 255,254,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 -255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 255,255,255 diff --git a/ReCapcha/Test/bin/Debug/experiment/_greied.txt b/ReCapcha/Test/bin/Debug/experiment/_greied.txt deleted file mode 100644 index df1c32f..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/_greied.txt +++ /dev/null @@ -1,30 +0,0 @@ -230,230,230 153,153,153 159,159,159 167,167,167 246,246,246 228,228,228 251,251,251 226,226,226 238,238,238 239,239,239 241,241,241 222,222,222 234,234,234 244,244,244 221,221,221 236,236,236 236,236,236 243,243,243 234,234,234 238,238,238 244,244,244 224,224,224 245,245,245 229,229,229 238,238,238 239,239,239 229,229,229 156,156,156 240,240,240 230,230,230 233,233,233 232,232,232 230,230,230 239,239,239 228,228,228 229,229,229 237,237,237 228,228,228 243,243,243 244,244,244 230,230,230 239,239,239 233,233,233 227,227,227 245,245,245 233,233,233 233,233,233 167,167,167 234,234,234 214,214,214 241,241,241 233,233,233 223,223,223 233,233,233 222,222,222 242,242,242 231,231,231 239,239,239 223,223,223 235,235,235 242,242,242 227,227,227 151,151,151 246,246,246 243,243,243 241,241,241 246,246,246 211,211,211 239,239,239 243,243,243 226,226,226 244,244,244 242,242,242 222,222,222 150,150,150 178,178,178 223,223,223 231,231,231 251,251,251 235,235,235 245,245,245 235,235,235 238,238,238 237,237,237 245,245,245 242,242,242 222,222,222 246,246,246 236,236,236 234,234,234 -234,234,234 245,245,245 235,235,235 226,226,226 159,159,159 178,178,178 160,160,160 172,172,172 143,143,143 175,175,175 225,225,225 244,244,244 232,232,232 236,236,236 241,241,241 239,239,239 238,238,238 224,224,224 238,238,238 160,160,160 160,160,160 242,242,242 228,228,228 231,231,231 234,234,234 229,229,229 238,238,238 241,241,241 143,143,143 237,237,237 236,236,236 230,230,230 218,218,218 234,234,234 240,240,240 243,243,243 239,239,239 236,236,236 236,236,236 230,230,230 237,237,237 245,245,245 242,242,242 170,170,170 212,212,212 247,247,247 224,224,224 154,154,154 243,243,243 237,237,237 227,227,227 227,227,227 240,240,240 243,243,243 241,241,241 226,226,226 242,242,242 226,226,226 242,242,242 217,217,217 247,247,247 244,244,244 234,234,234 148,148,148 230,230,230 224,224,224 236,236,236 238,238,238 246,246,246 221,221,221 229,229,229 232,232,232 224,224,224 244,244,244 166,166,166 217,217,217 175,175,175 141,141,141 159,159,159 161,161,161 161,161,161 170,170,170 163,163,163 241,241,241 147,147,147 235,235,235 248,248,248 223,223,223 231,231,231 232,232,232 -220,220,220 233,233,233 244,244,244 176,176,176 228,228,228 232,232,232 228,228,228 229,229,229 246,246,246 229,229,229 142,142,142 171,171,171 146,146,146 237,237,237 228,228,228 237,237,237 221,221,221 247,247,247 235,235,235 233,233,233 158,158,158 157,157,157 165,165,165 239,239,239 232,232,232 247,247,247 218,218,218 241,241,241 165,165,165 222,222,222 166,166,166 245,245,245 243,243,243 223,223,223 229,229,229 241,241,241 239,239,239 233,233,233 226,226,226 232,232,232 236,236,236 219,219,219 239,239,239 226,226,226 153,153,153 243,243,243 235,235,235 248,248,248 149,149,149 220,220,220 237,237,237 245,245,245 241,241,241 214,214,214 231,231,231 236,236,236 233,233,233 236,236,236 234,234,234 183,183,183 212,212,212 223,223,223 248,248,248 240,240,240 175,175,175 237,237,237 221,221,221 246,246,246 216,216,216 243,243,243 243,243,243 231,231,231 239,239,239 229,229,229 218,218,218 161,161,161 248,248,248 240,240,240 161,161,161 177,177,177 163,163,163 158,158,158 139,139,139 174,174,174 179,179,179 155,155,155 166,166,166 237,237,237 241,241,241 243,243,243 -244,244,244 241,241,241 225,225,225 161,161,161 240,240,240 251,251,251 234,234,234 248,248,248 246,246,246 229,229,229 244,244,244 154,154,154 242,242,242 223,223,223 247,247,247 231,231,231 248,248,248 223,223,223 227,227,227 244,244,244 231,231,231 156,156,156 244,244,244 147,147,147 150,150,150 244,244,244 243,243,243 161,161,161 164,164,164 160,160,160 168,168,168 221,221,221 226,226,226 229,229,229 246,246,246 228,228,228 232,232,232 247,247,247 248,248,248 232,232,232 235,235,235 244,244,244 230,230,230 244,244,244 168,168,168 163,163,163 155,155,155 236,236,236 171,171,171 242,242,242 235,235,235 219,219,219 230,230,230 237,237,237 247,247,247 240,240,240 236,236,236 249,249,249 226,226,226 228,228,228 123,123,123 119,119,119 109,109,109 116,116,116 87,87,87 122,122,122 123,123,123 216,216,216 237,237,237 245,245,245 222,222,222 244,244,244 235,235,235 220,220,220 245,245,245 157,157,157 233,233,233 229,229,229 235,235,235 149,149,149 231,231,231 249,249,249 248,248,248 227,227,227 236,236,236 232,232,232 154,154,154 157,157,157 150,150,150 163,163,163 -221,221,221 234,234,234 245,245,245 221,221,221 176,176,176 223,223,223 233,233,233 243,243,243 223,223,223 245,245,245 243,243,243 227,227,227 169,169,169 247,247,247 221,221,221 240,240,240 235,235,235 239,239,239 235,235,235 238,238,238 248,248,248 231,231,231 163,163,163 187,187,187 248,248,248 146,146,146 152,152,152 175,175,175 236,236,236 187,187,187 239,239,239 175,175,175 250,250,250 228,228,228 240,240,240 227,227,227 244,244,244 225,225,225 231,231,231 222,222,222 235,235,235 217,217,217 230,230,230 234,234,234 225,225,225 158,158,158 234,234,234 177,177,177 228,228,228 247,247,247 237,237,237 232,232,232 247,247,247 240,240,240 226,226,226 236,236,236 156,156,156 234,234,234 103,103,103 137,137,137 110,110,110 111,111,111 130,130,130 110,110,110 132,132,132 104,104,104 119,119,119 100,100,100 246,246,246 233,233,233 230,230,230 234,234,234 223,223,223 245,245,245 224,224,224 150,150,150 155,155,155 237,237,237 247,247,247 249,249,249 170,170,170 166,166,166 146,146,146 172,172,172 232,232,232 249,249,249 229,229,229 241,241,241 190,190,190 217,217,217 -245,245,245 232,232,232 232,232,232 248,248,248 145,145,145 236,236,236 239,239,239 157,157,157 248,248,248 226,226,226 234,234,234 240,240,240 161,161,161 238,238,238 243,243,243 236,236,236 159,159,159 175,175,175 241,241,241 231,231,231 252,252,252 232,232,232 159,159,159 222,222,222 165,165,165 170,170,170 164,164,164 164,164,164 165,165,165 137,137,137 166,166,166 155,155,155 141,141,141 196,196,196 228,228,228 252,252,252 251,251,251 233,233,233 242,242,242 246,246,246 226,226,226 243,243,243 229,229,229 215,215,215 246,246,246 172,172,172 236,236,236 230,230,230 163,163,163 226,226,226 249,249,249 230,230,230 233,233,233 249,249,249 241,241,241 231,231,231 183,183,183 98,98,98 130,130,130 115,115,115 102,102,102 174,174,174 236,236,236 236,236,236 229,229,229 231,231,231 227,227,227 107,107,107 221,221,221 240,240,240 244,244,244 227,227,227 238,238,238 206,206,206 236,236,236 237,237,237 167,167,167 244,244,244 231,231,231 228,228,228 154,154,154 181,181,181 159,159,159 164,164,164 173,173,173 151,151,151 179,179,179 158,158,158 144,144,144 159,159,159 -238,238,238 226,226,226 161,161,161 232,232,232 162,162,162 250,250,250 238,238,238 161,161,161 233,233,233 223,223,223 246,246,246 235,235,235 220,220,220 163,163,163 238,238,238 251,251,251 170,170,170 232,232,232 166,166,166 173,173,173 221,221,221 247,247,247 171,171,171 169,169,169 242,242,242 235,235,235 167,167,167 165,165,165 250,250,250 254,254,254 167,167,167 171,171,171 171,171,171 235,235,235 96,96,96 59,59,59 93,93,93 240,240,240 234,234,234 154,154,154 151,151,151 154,154,154 152,152,152 182,182,182 151,151,151 145,145,145 172,172,172 244,244,244 237,237,237 177,177,177 147,147,147 227,227,227 250,250,250 226,226,226 231,231,231 249,249,249 102,102,102 117,117,117 116,116,116 228,228,228 237,237,237 163,163,163 239,239,239 244,244,244 231,231,231 241,241,241 245,245,245 232,232,232 244,244,244 231,231,231 225,225,225 236,236,236 235,235,235 244,244,244 224,224,224 237,237,237 239,239,239 152,152,152 240,240,240 251,251,251 247,247,247 159,159,159 178,178,178 254,254,254 145,145,145 177,177,177 221,221,221 243,243,243 247,247,247 243,243,243 -229,229,229 245,245,245 231,231,231 163,163,163 239,239,239 156,156,156 233,233,233 240,240,240 165,165,165 235,235,235 230,230,230 238,238,238 243,243,243 42,42,42 28,28,28 43,43,43 49,49,49 35,35,35 45,45,45 46,46,46 37,37,37 41,41,41 176,176,176 235,235,235 156,156,156 174,174,174 244,244,244 154,154,154 159,159,159 247,247,247 230,230,230 169,169,169 162,162,162 252,252,252 84,84,84 93,93,93 86,86,86 239,239,239 247,247,247 233,233,233 245,245,245 221,221,221 236,236,236 223,223,223 234,234,234 243,243,243 161,161,161 239,239,239 237,237,237 237,237,237 158,158,158 172,172,172 222,222,222 247,247,247 237,237,237 110,110,110 121,121,121 110,110,110 114,114,114 250,250,250 242,242,242 234,234,234 161,161,161 233,233,233 241,241,241 230,230,230 229,229,229 237,237,237 236,236,236 220,220,220 245,245,245 222,222,222 235,235,235 223,223,223 241,241,241 232,232,232 238,238,238 71,71,71 85,85,85 68,68,68 251,251,251 169,169,169 241,241,241 157,157,157 183,183,183 232,232,232 175,175,175 167,167,167 239,239,239 232,232,232 -238,238,238 244,244,244 221,221,221 162,162,162 162,162,162 169,169,169 242,242,242 232,232,232 166,166,166 237,237,237 238,238,238 236,236,236 232,232,232 45,45,45 34,34,34 45,45,45 56,56,56 38,38,38 46,46,46 45,45,45 46,46,46 34,34,34 174,174,174 156,156,156 239,239,239 237,237,237 164,164,164 160,160,160 157,157,157 178,178,178 160,160,160 170,170,170 176,176,176 158,158,158 98,98,98 93,93,93 80,80,80 241,241,241 248,248,248 234,234,234 233,233,233 234,234,234 234,234,234 235,235,235 234,234,234 225,225,225 248,248,248 162,162,162 240,240,240 232,232,232 165,165,165 239,239,239 173,173,173 231,231,231 238,238,238 116,116,116 120,120,120 120,120,120 229,229,229 238,238,238 178,178,178 223,223,223 164,164,164 235,235,235 235,235,235 234,234,234 247,247,247 223,223,223 230,230,230 231,231,231 238,238,238 236,236,236 237,237,237 227,227,227 246,246,246 229,229,229 241,241,241 77,77,77 83,83,83 79,79,79 173,173,173 167,167,167 244,244,244 164,164,164 151,151,151 182,182,182 237,237,237 240,240,240 165,165,165 159,159,159 -233,233,233 237,237,237 246,246,246 242,242,242 237,237,237 155,155,155 158,158,158 248,248,248 149,149,149 237,237,237 241,241,241 241,241,241 238,238,238 241,241,241 225,225,225 171,171,171 239,239,239 242,242,242 241,241,241 39,39,39 41,41,41 34,34,34 241,241,241 172,172,172 246,246,246 233,233,233 250,250,250 238,238,238 162,162,162 141,141,141 178,178,178 146,146,146 158,158,158 177,177,177 100,100,100 78,78,78 95,95,95 249,249,249 234,234,234 227,227,227 240,240,240 222,222,222 243,243,243 234,234,234 238,238,238 239,239,239 231,231,231 156,156,156 226,226,226 248,248,248 147,147,147 216,216,216 245,245,245 163,163,163 221,221,221 125,125,125 104,104,104 100,100,100 249,249,249 230,230,230 216,216,216 160,160,160 176,176,176 160,160,160 236,236,236 236,236,236 220,220,220 248,248,248 245,245,245 162,162,162 227,227,227 238,238,238 230,230,230 160,160,160 235,235,235 217,217,217 244,244,244 247,247,247 143,143,143 243,243,243 232,232,232 157,157,157 163,163,163 178,178,178 176,176,176 139,139,139 179,179,179 218,218,218 231,231,231 237,237,237 -223,223,223 238,238,238 227,227,227 236,236,236 238,238,238 242,242,242 152,152,152 161,161,161 182,182,182 150,150,150 248,248,248 229,229,229 240,240,240 244,244,244 244,244,244 247,247,247 175,175,175 246,246,246 48,48,48 59,59,59 45,45,45 175,175,175 152,152,152 158,158,158 162,162,162 237,237,237 219,219,219 236,236,236 163,163,163 167,167,167 235,235,235 177,177,177 174,174,174 163,163,163 91,91,91 90,90,90 84,84,84 185,185,185 169,169,169 181,181,181 157,157,157 94,94,94 62,62,62 241,241,241 246,246,246 236,236,236 234,234,234 249,249,249 164,164,164 231,231,231 167,167,167 249,249,249 243,243,243 156,156,156 246,246,246 112,112,112 122,122,122 140,140,140 219,219,219 224,224,224 248,248,248 242,242,242 235,235,235 154,154,154 228,228,228 248,248,248 220,220,220 228,228,228 241,241,241 227,227,227 157,157,157 233,233,233 165,165,165 137,137,137 242,242,242 248,248,248 241,241,241 242,242,242 247,247,247 152,152,152 240,240,240 235,235,235 150,150,150 232,232,232 236,236,236 234,234,234 229,229,229 180,180,180 162,162,162 172,172,172 -245,245,245 237,237,237 226,226,226 248,248,248 219,219,219 244,244,244 178,178,178 151,151,151 231,231,231 177,177,177 135,135,135 169,169,169 234,234,234 236,236,236 172,172,172 241,241,241 179,179,179 31,31,31 58,58,58 32,32,32 222,222,222 250,250,250 253,253,253 157,157,157 234,234,234 157,157,157 248,248,248 236,236,236 240,240,240 243,243,243 130,130,130 169,169,169 240,240,240 161,161,161 86,86,86 111,111,111 98,98,98 214,214,214 244,244,244 233,233,233 83,83,83 108,108,108 224,224,224 220,220,220 228,228,228 239,239,239 235,235,235 227,227,227 163,163,163 231,231,231 227,227,227 161,161,161 230,230,230 161,161,161 234,234,234 112,112,112 102,102,102 111,111,111 159,159,159 249,249,249 229,229,229 233,233,233 235,235,235 235,235,235 229,229,229 122,122,122 113,113,113 120,120,120 231,231,231 241,241,241 244,244,244 152,152,152 247,247,247 153,153,153 162,162,162 243,243,243 154,154,154 58,58,58 92,92,92 77,77,77 232,232,232 219,219,219 241,241,241 152,152,152 210,210,210 242,242,242 244,244,244 224,224,224 156,156,156 161,161,161 -224,224,224 227,227,227 247,247,247 219,219,219 237,237,237 231,231,231 249,249,249 160,160,160 159,159,159 236,236,236 237,237,237 249,249,249 173,173,173 171,171,171 237,237,237 179,179,179 44,44,44 58,58,58 33,33,33 249,249,249 254,254,254 246,246,246 237,237,237 153,153,153 233,233,233 231,231,231 159,159,159 229,229,229 216,216,216 248,248,248 244,244,244 159,159,159 243,243,243 181,181,181 90,90,90 87,87,87 82,82,82 188,188,188 176,176,176 97,97,97 78,78,78 159,159,159 251,251,251 247,247,247 246,246,246 221,221,221 248,248,248 224,224,224 159,159,159 165,165,165 160,160,160 157,157,157 168,168,168 174,174,174 176,176,176 117,117,117 124,124,124 121,121,121 162,162,162 169,169,169 153,153,153 229,229,229 249,249,249 235,235,235 246,246,246 95,95,95 119,119,119 122,122,122 224,224,224 226,226,226 246,246,246 239,239,239 151,151,151 240,240,240 156,156,156 171,171,171 243,243,243 94,94,94 71,71,71 81,81,81 230,230,230 241,241,241 214,214,214 240,240,240 242,242,242 231,231,231 233,233,233 238,238,238 176,176,176 157,157,157 -229,229,229 232,232,232 168,168,168 236,236,236 248,248,248 249,249,249 207,207,207 175,175,175 234,234,234 174,174,174 232,232,232 233,233,233 228,228,228 253,253,253 249,249,249 29,29,29 41,41,41 26,26,26 254,254,254 168,168,168 237,237,237 229,229,229 213,213,213 181,181,181 230,230,230 246,246,246 160,160,160 243,243,243 247,247,247 224,224,224 226,226,226 172,172,172 161,161,161 168,168,168 88,88,88 91,91,91 111,111,111 152,152,152 112,112,112 88,88,88 248,248,248 156,156,156 156,156,156 171,171,171 140,140,140 169,169,169 144,144,144 247,247,247 158,158,158 177,177,177 238,238,238 173,173,173 152,152,152 175,175,175 231,231,231 107,107,107 116,116,116 106,106,106 128,128,128 159,159,159 181,181,181 161,161,161 142,142,142 244,244,244 237,237,237 126,126,126 100,100,100 111,111,111 228,228,228 249,249,249 144,144,144 229,229,229 237,237,237 165,165,165 177,177,177 149,149,149 239,239,239 86,86,86 80,80,80 69,69,69 234,234,234 236,236,236 234,234,234 222,222,222 244,244,244 226,226,226 230,230,230 237,237,237 213,213,213 181,181,181 -238,238,238 237,237,237 237,237,237 163,163,163 233,233,233 229,229,229 240,240,240 164,164,164 164,164,164 154,154,154 160,160,160 165,165,165 183,183,183 151,151,151 44,44,44 50,50,50 45,45,45 233,233,233 241,241,241 154,154,154 248,248,248 243,243,243 246,246,246 147,147,147 236,236,236 220,220,220 232,232,232 156,156,156 235,235,235 231,231,231 251,251,251 237,237,237 164,164,164 171,171,171 88,88,88 93,93,93 100,100,100 101,101,101 99,99,99 155,155,155 168,168,168 181,181,181 238,238,238 157,157,157 174,174,174 166,166,166 172,172,172 147,147,147 155,155,155 165,165,165 163,163,163 168,168,168 167,167,167 156,156,156 172,172,172 248,248,248 120,120,120 133,133,133 113,113,113 163,163,163 232,232,232 252,252,252 151,151,151 168,168,168 167,167,167 111,111,111 115,115,115 127,127,127 239,239,239 220,220,220 231,231,231 169,169,169 237,237,237 243,243,243 147,147,147 170,170,170 242,242,242 82,82,82 75,75,75 100,100,100 168,168,168 241,241,241 235,235,235 249,249,249 237,237,237 235,235,235 247,247,247 227,227,227 246,246,246 233,233,233 -227,227,227 167,167,167 155,155,155 162,162,162 157,157,157 241,241,241 250,250,250 231,231,231 171,171,171 230,230,230 247,247,247 251,251,251 230,230,230 50,50,50 48,48,48 38,38,38 249,249,249 164,164,164 241,241,241 169,169,169 241,241,241 225,225,225 240,240,240 232,232,232 228,228,228 175,175,175 158,158,158 231,231,231 169,169,169 239,239,239 242,242,242 242,242,242 169,169,169 161,161,161 93,93,93 97,97,97 82,82,82 90,90,90 93,93,93 103,103,103 176,176,176 156,156,156 242,242,242 175,175,175 225,225,225 236,236,236 233,233,233 241,241,241 250,250,250 228,228,228 247,247,247 159,159,159 160,160,160 178,178,178 155,155,155 171,171,171 162,162,162 119,119,119 120,120,120 114,114,114 123,123,123 225,225,225 252,252,252 159,159,159 163,163,163 107,107,107 114,114,114 115,115,115 233,233,233 242,242,242 233,233,233 161,161,161 240,240,240 237,237,237 250,250,250 155,155,155 175,175,175 77,77,77 90,90,90 71,71,71 249,249,249 146,146,146 180,180,180 152,152,152 243,243,243 241,241,241 228,228,228 239,239,239 227,227,227 232,232,232 -229,229,229 226,226,226 237,237,237 243,243,243 157,157,157 165,165,165 160,160,160 169,169,169 153,153,153 251,251,251 240,240,240 232,232,232 248,248,248 45,45,45 35,35,35 48,48,48 30,30,30 54,54,54 47,47,47 42,42,42 58,58,58 43,43,43 217,217,217 238,238,238 245,245,245 236,236,236 250,250,250 154,154,154 160,160,160 177,177,177 233,233,233 241,241,241 167,167,167 244,244,244 82,82,82 93,93,93 85,85,85 169,169,169 94,94,94 92,92,92 94,94,94 169,169,169 166,166,166 253,253,253 146,146,146 243,243,243 227,227,227 243,243,243 228,228,228 247,247,247 229,229,229 249,249,249 242,242,242 220,220,220 177,177,177 154,154,154 239,239,239 246,246,246 104,104,104 128,128,128 106,106,106 120,120,120 111,111,111 123,123,123 122,122,122 109,109,109 106,106,106 125,125,125 232,232,232 238,238,238 249,249,249 226,226,226 165,165,165 229,229,229 175,175,175 159,159,159 236,236,236 88,88,88 76,76,76 86,86,86 160,160,160 245,245,245 160,160,160 240,240,240 177,177,177 147,147,147 248,248,248 227,227,227 226,226,226 244,244,244 -242,242,242 237,237,237 244,244,244 232,232,232 246,246,246 251,251,251 162,162,162 238,238,238 160,160,160 165,165,165 154,154,154 156,156,156 179,179,179 38,38,38 44,44,44 46,46,46 50,50,50 38,38,38 39,39,39 43,43,43 30,30,30 42,42,42 252,252,252 242,242,242 236,236,236 224,224,224 239,239,239 174,174,174 242,242,242 239,239,239 156,156,156 168,168,168 160,160,160 225,225,225 91,91,91 93,93,93 93,93,93 179,179,179 245,245,245 78,78,78 81,81,81 98,98,98 162,162,162 236,236,236 176,176,176 241,241,241 242,242,242 234,234,234 233,233,233 225,225,225 241,241,241 224,224,224 237,237,237 244,244,244 148,148,148 187,187,187 172,172,172 249,249,249 245,245,245 231,231,231 127,127,127 112,112,112 128,128,128 105,105,105 120,120,120 118,118,118 131,131,131 169,169,169 152,152,152 168,168,168 219,219,219 249,249,249 162,162,162 237,237,237 234,234,234 178,178,178 161,161,161 60,60,60 104,104,104 72,72,72 243,243,243 172,172,172 161,161,161 144,144,144 236,236,236 240,240,240 152,152,152 171,171,171 168,168,168 211,211,211 -212,212,212 227,227,227 243,243,243 225,225,225 247,247,247 236,236,236 169,169,169 239,239,239 162,162,162 246,246,246 248,248,248 248,248,248 225,225,225 241,241,241 251,251,251 147,147,147 169,169,169 160,160,160 253,253,253 189,189,189 170,170,170 233,233,233 228,228,228 226,226,226 238,238,238 247,247,247 159,159,159 146,146,146 241,241,241 246,246,246 233,233,233 232,232,232 246,246,246 253,253,253 85,85,85 86,86,86 82,82,82 167,167,167 168,168,168 183,183,183 99,99,99 89,89,89 74,74,74 169,169,169 229,229,229 171,171,171 223,223,223 234,234,234 240,240,240 237,237,237 230,230,230 152,152,152 180,180,180 236,236,236 162,162,162 223,223,223 156,156,156 157,157,157 229,229,229 166,166,166 164,164,164 244,244,244 156,156,156 246,246,246 160,160,160 231,231,231 225,225,225 245,245,245 240,240,240 227,227,227 171,171,171 153,153,153 240,240,240 160,160,160 243,243,243 228,228,228 173,173,173 97,97,97 75,75,75 73,73,73 235,235,235 230,230,230 249,249,249 158,158,158 164,164,164 173,173,173 232,232,232 227,227,227 236,236,236 192,192,192 -244,244,244 231,231,231 240,240,240 248,248,248 154,154,154 150,150,150 237,237,237 169,169,169 167,167,167 235,235,235 225,225,225 226,226,226 168,168,168 169,169,169 242,242,242 180,180,180 176,176,176 240,240,240 240,240,240 164,164,164 166,166,166 254,254,254 241,241,241 245,245,245 219,219,219 239,239,239 163,163,163 177,177,177 174,174,174 245,245,245 223,223,223 245,245,245 227,227,227 237,237,237 86,86,86 81,81,81 97,97,97 246,246,246 167,167,167 241,241,241 245,245,245 89,89,89 89,89,89 89,89,89 178,178,178 221,221,221 170,170,170 245,245,245 223,223,223 239,239,239 240,240,240 240,240,240 220,220,220 167,167,167 162,162,162 248,248,248 174,174,174 163,163,163 246,246,246 166,166,166 166,166,166 236,236,236 247,247,247 156,156,156 157,157,157 251,251,251 246,246,246 213,213,213 249,249,249 249,249,249 235,235,235 237,237,237 240,240,240 158,158,158 239,239,239 235,235,235 163,163,163 83,83,83 60,60,60 96,96,96 239,239,239 238,238,238 227,227,227 159,159,159 236,236,236 235,235,235 230,230,230 246,246,246 232,232,232 222,222,222 -222,222,222 233,233,233 155,155,155 164,164,164 172,172,172 169,169,169 250,250,250 228,228,228 151,151,151 167,167,167 242,242,242 248,248,248 242,242,242 146,146,146 162,162,162 166,166,166 158,158,158 249,249,249 246,246,246 174,174,174 152,152,152 174,174,174 220,220,220 234,234,234 238,238,238 240,240,240 227,227,227 149,149,149 229,229,229 159,159,159 238,238,238 223,223,223 248,248,248 218,218,218 101,101,101 85,85,85 81,81,81 163,163,163 239,239,239 162,162,162 226,226,226 254,254,254 83,83,83 75,75,75 90,90,90 158,158,158 164,164,164 231,231,231 228,228,228 244,244,244 227,227,227 238,238,238 246,246,246 237,237,237 225,225,225 162,162,162 157,157,157 156,156,156 187,187,187 232,232,232 141,141,141 251,251,251 244,244,244 165,165,165 164,164,164 222,222,222 250,250,250 249,249,249 233,233,233 219,219,219 232,232,232 235,235,235 231,231,231 219,219,219 162,162,162 245,245,245 235,235,235 82,82,82 83,83,83 75,75,75 162,162,162 227,227,227 238,238,238 155,155,155 233,233,233 241,241,241 246,246,246 218,218,218 245,245,245 174,174,174 -227,227,227 179,179,179 149,149,149 166,166,166 155,155,155 154,154,154 166,166,166 169,169,169 164,164,164 151,151,151 223,223,223 235,235,235 232,232,232 243,243,243 168,168,168 229,229,229 169,169,169 233,233,233 175,175,175 154,154,154 250,250,250 169,169,169 241,241,241 233,233,233 239,239,239 214,214,214 248,248,248 178,178,178 225,225,225 248,248,248 151,151,151 244,244,244 219,219,219 249,249,249 220,220,220 245,245,245 231,231,231 160,160,160 253,253,253 245,245,245 179,179,179 224,224,224 253,253,253 177,177,177 221,221,221 174,174,174 165,165,165 156,156,156 242,242,242 217,217,217 229,229,229 236,236,236 233,233,233 227,227,227 242,242,242 234,234,234 240,240,240 162,162,162 157,157,157 155,155,155 187,187,187 158,158,158 222,222,222 238,238,238 174,174,174 233,233,233 225,225,225 238,238,238 227,227,227 244,244,244 238,238,238 244,244,244 233,233,233 245,245,245 151,151,151 231,231,231 234,234,234 75,75,75 67,67,67 82,82,82 239,239,239 152,152,152 239,239,239 167,167,167 229,229,229 230,230,230 227,227,227 248,248,248 229,229,229 160,160,160 -243,243,243 231,231,231 238,238,238 240,240,240 243,243,243 235,235,235 158,158,158 231,231,231 232,232,232 188,188,188 213,213,213 244,244,244 225,225,225 245,245,245 163,163,163 241,241,241 140,140,140 182,182,182 238,238,238 168,168,168 238,238,238 167,167,167 144,144,144 239,239,239 231,231,231 243,243,243 216,216,216 166,166,166 163,163,163 229,229,229 156,156,156 229,229,229 238,238,238 245,245,245 156,156,156 169,169,169 233,233,233 231,231,231 163,163,163 166,166,166 238,238,238 157,157,157 228,228,228 251,251,251 151,151,151 237,237,237 165,165,165 157,157,157 235,235,235 227,227,227 244,244,244 228,228,228 237,237,237 241,241,241 243,243,243 241,241,241 237,237,237 164,164,164 228,228,228 171,171,171 143,143,143 160,160,160 180,180,180 249,249,249 148,148,148 239,239,239 241,241,241 233,233,233 238,238,238 236,236,236 222,222,222 234,234,234 230,230,230 235,235,235 142,142,142 167,167,167 234,234,234 248,248,248 242,242,242 230,230,230 235,235,235 242,242,242 218,218,218 152,152,152 245,245,245 244,244,244 248,248,248 226,226,226 238,238,238 167,167,167 -226,226,226 246,246,246 239,239,239 227,227,227 241,241,241 247,247,247 152,152,152 239,239,239 235,235,235 217,217,217 246,246,246 222,222,222 233,233,233 155,155,155 161,161,161 155,155,155 171,171,171 163,163,163 165,165,165 160,160,160 172,172,172 161,161,161 159,159,159 160,160,160 150,150,150 234,234,234 245,245,245 240,240,240 153,153,153 240,240,240 172,172,172 155,155,155 239,239,239 220,220,220 231,231,231 242,242,242 167,167,167 164,164,164 158,158,158 163,163,163 163,163,163 242,242,242 246,246,246 230,230,230 176,176,176 155,155,155 156,156,156 242,242,242 239,239,239 228,228,228 230,230,230 239,239,239 235,235,235 153,153,153 170,170,170 233,233,233 156,156,156 241,241,241 167,167,167 239,239,239 237,237,237 166,166,166 155,155,155 232,232,232 168,168,168 170,170,170 220,220,220 236,236,236 246,246,246 218,218,218 245,245,245 230,230,230 230,230,230 235,235,235 168,168,168 228,228,228 239,239,239 227,227,227 245,245,245 232,232,232 240,240,240 227,227,227 247,247,247 170,170,170 149,149,149 233,233,233 232,232,232 246,246,246 239,239,239 160,160,160 -231,231,231 243,243,243 236,236,236 232,232,232 233,233,233 238,238,238 223,223,223 170,170,170 231,231,231 236,236,236 241,241,241 225,225,225 157,157,157 235,235,235 237,237,237 237,237,237 157,157,157 167,167,167 240,240,240 172,172,172 158,158,158 242,242,242 159,159,159 233,233,233 235,235,235 235,235,235 234,234,234 240,240,240 170,170,170 236,236,236 229,229,229 160,160,160 155,155,155 237,237,237 238,238,238 241,241,241 227,227,227 241,241,241 232,232,232 241,241,241 161,161,161 161,161,161 162,162,162 242,242,242 163,163,163 241,241,241 149,149,149 179,179,179 225,225,225 243,243,243 223,223,223 240,240,240 238,238,238 236,236,236 230,230,230 168,168,168 171,171,171 148,148,148 168,168,168 237,237,237 233,233,233 161,161,161 171,171,171 157,157,157 243,243,243 161,161,161 245,245,245 234,234,234 228,228,228 234,234,234 233,233,233 239,239,239 237,237,237 236,236,236 244,244,244 139,139,139 246,246,246 246,246,246 223,223,223 243,243,243 162,162,162 173,173,173 160,160,160 150,150,150 245,245,245 175,175,175 147,147,147 245,245,245 239,239,239 243,243,243 -232,232,232 240,240,240 230,230,230 235,235,235 241,241,241 239,239,239 236,236,236 214,214,214 238,238,238 231,231,231 238,238,238 233,233,233 244,244,244 164,164,164 209,209,209 237,237,237 234,234,234 164,164,164 236,236,236 241,241,241 173,173,173 153,153,153 169,169,169 169,169,169 235,235,235 240,240,240 243,243,243 245,245,245 164,164,164 237,237,237 249,249,249 153,153,153 242,242,242 220,220,220 233,233,233 235,235,235 244,244,244 230,230,230 247,247,247 230,230,230 237,237,237 232,232,232 241,241,241 220,220,220 166,166,166 244,244,244 239,239,239 142,142,142 164,164,164 147,147,147 242,242,242 239,239,239 229,229,229 242,242,242 235,235,235 232,232,232 241,241,241 146,146,146 179,179,179 163,163,163 231,231,231 251,251,251 147,147,147 161,161,161 165,165,165 155,155,155 155,155,155 245,245,245 242,242,242 239,239,239 236,236,236 227,227,227 224,224,224 221,221,221 236,236,236 174,174,174 232,232,232 230,230,230 245,245,245 235,235,235 239,239,239 234,234,234 246,246,246 173,173,173 160,160,160 137,137,137 184,184,184 154,154,154 164,164,164 225,225,225 -238,238,238 242,242,242 227,227,227 235,235,235 239,239,239 228,228,228 235,235,235 241,241,241 168,168,168 138,138,138 249,249,249 239,239,239 238,238,238 233,233,233 162,162,162 238,238,238 231,231,231 233,233,233 165,165,165 175,175,175 174,174,174 226,226,226 243,243,243 149,149,149 173,173,173 136,136,136 236,236,236 248,248,248 136,136,136 181,181,181 233,233,233 238,238,238 153,153,153 246,246,246 231,231,231 239,239,239 143,143,143 240,240,240 237,237,237 229,229,229 232,232,232 233,233,233 235,235,235 244,244,244 223,223,223 166,166,166 248,248,248 248,248,248 237,237,237 228,228,228 158,158,158 243,243,243 235,235,235 235,235,235 249,249,249 157,157,157 171,171,171 231,231,231 159,159,159 180,180,180 223,223,223 156,156,156 232,232,232 250,250,250 170,170,170 156,156,156 162,162,162 234,234,234 160,160,160 236,236,236 228,228,228 244,244,244 245,245,245 228,228,228 230,230,230 242,242,242 157,157,157 234,234,234 164,164,164 172,172,172 251,251,251 149,149,149 174,174,174 145,145,145 171,171,171 169,169,169 160,160,160 173,173,173 159,159,159 159,159,159 -238,238,238 245,245,245 228,228,228 231,231,231 237,237,237 226,226,226 232,232,232 238,238,238 244,244,244 158,158,158 145,145,145 161,161,161 220,220,220 244,244,244 241,241,241 153,153,153 245,245,245 236,236,236 167,167,167 146,146,146 233,233,233 179,179,179 232,232,232 243,243,243 229,229,229 160,160,160 181,181,181 250,250,250 195,195,195 156,156,156 233,233,233 239,239,239 155,155,155 224,224,224 164,164,164 240,240,240 246,246,246 175,175,175 217,217,217 246,246,246 230,230,230 239,239,239 169,169,169 233,233,233 242,242,242 158,158,158 231,231,231 223,223,223 244,244,244 233,233,233 225,225,225 154,154,154 233,233,233 248,248,248 224,224,224 240,240,240 228,228,228 173,173,173 167,167,167 159,159,159 251,251,251 233,233,233 176,176,176 216,216,216 229,229,229 249,249,249 160,160,160 158,158,158 160,160,160 240,240,240 230,230,230 235,235,235 232,232,232 229,229,229 235,235,235 219,219,219 171,171,171 159,159,159 240,240,240 237,237,237 157,157,157 171,171,171 160,160,160 248,248,248 177,177,177 232,232,232 233,233,233 233,233,233 242,242,242 179,179,179 -230,230,230 243,243,243 230,230,230 230,230,230 239,239,239 240,240,240 238,238,238 218,218,218 224,224,224 251,251,251 166,166,166 250,250,250 167,167,167 163,163,163 238,238,238 231,231,231 217,217,217 247,247,247 236,236,236 178,178,178 156,156,156 226,226,226 239,239,239 233,233,233 244,244,244 158,158,158 157,157,157 145,145,145 173,173,173 164,164,164 162,162,162 167,167,167 182,182,182 163,163,163 238,238,238 152,152,152 222,222,222 230,230,230 177,177,177 213,213,213 246,246,246 235,235,235 147,147,147 239,239,239 225,225,225 169,169,169 248,248,248 164,164,164 220,220,220 246,246,246 242,242,242 248,248,248 149,149,149 166,166,166 235,235,235 241,241,241 237,237,237 178,178,178 237,237,237 159,159,159 171,171,171 170,170,170 151,151,151 250,250,250 243,243,243 224,224,224 233,233,233 157,157,157 167,167,167 235,235,235 242,242,242 226,226,226 232,232,232 229,229,229 167,167,167 247,247,247 154,154,154 250,250,250 148,148,148 170,170,170 237,237,237 234,234,234 234,234,234 166,166,166 165,165,165 156,156,156 162,162,162 246,246,246 233,233,233 235,235,235 -231,231,231 240,240,240 233,233,233 231,231,231 231,231,231 239,239,239 231,231,231 178,178,178 179,179,179 153,153,153 160,160,160 155,155,155 246,246,246 228,228,228 160,160,160 162,162,162 243,243,243 206,206,206 249,249,249 151,151,151 176,176,176 248,248,248 248,248,248 220,220,220 233,233,233 243,243,243 180,180,180 168,168,168 231,231,231 169,169,169 240,240,240 235,235,235 223,223,223 241,241,241 238,238,238 242,242,242 166,166,166 235,235,235 228,228,228 238,238,238 225,225,225 228,228,228 160,160,160 247,247,247 241,241,241 145,145,145 245,245,245 230,230,230 172,172,172 229,229,229 235,235,235 220,220,220 242,242,242 159,159,159 176,176,176 244,244,244 237,237,237 151,151,151 234,234,234 168,168,168 220,220,220 249,249,249 163,163,163 166,166,166 154,154,154 250,250,250 228,228,228 172,172,172 238,238,238 144,144,144 246,246,246 244,244,244 241,241,241 239,239,239 233,233,233 159,159,159 242,242,242 145,145,145 251,251,251 237,237,237 173,173,173 237,237,237 179,179,179 238,238,238 140,140,140 246,246,246 251,251,251 160,160,160 171,171,171 229,229,229 diff --git a/ReCapcha/Test/bin/Debug/experiment/_original.txt b/ReCapcha/Test/bin/Debug/experiment/_original.txt deleted file mode 100644 index 995c696..0000000 --- a/ReCapcha/Test/bin/Debug/experiment/_original.txt +++ /dev/null @@ -1,30 +0,0 @@ -206,243,241 131,165,164 142,168,168 153,174,175 236,251,253 219,232,234 243,255,255 214,232,233 224,245,246 221,249,249 220,252,251 200,234,233 212,246,245 224,255,255 201,232,231 218,246,246 219,244,246 227,250,252 217,242,244 219,247,248 225,253,254 203,234,235 227,255,255 207,241,241 214,250,250 215,251,251 204,242,242 131,169,169 215,253,253 205,243,243 208,246,246 205,247,246 198,248,246 207,255,255 199,243,242 205,241,241 217,247,248 211,236,238 227,250,252 227,252,254 211,239,240 219,249,250 212,243,244 206,237,238 227,255,255 216,241,243 217,240,242 149,177,177 210,247,245 187,231,225 216,255,254 206,250,244 197,237,235 207,247,245 197,236,234 218,255,255 208,245,241 216,253,249 203,237,231 215,249,243 224,255,248 209,240,233 136,163,154 233,255,251 231,255,245 228,252,244 232,254,252 194,219,221 220,246,252 222,252,255 205,235,240 222,255,255 222,255,250 203,237,227 133,164,155 164,191,181 210,232,227 220,239,236 243,255,255 227,239,241 238,247,250 229,239,239 232,242,242 228,242,241 234,252,251 228,250,248 207,231,229 229,255,255 217,248,245 214,247,243 -210,247,245 227,255,255 218,244,244 212,233,234 149,164,166 169,182,184 151,164,166 160,178,179 127,151,151 157,185,185 204,236,235 223,255,255 210,244,243 215,247,246 221,252,251 221,249,249 221,246,248 208,231,233 221,246,248 143,168,170 141,169,170 222,252,253 207,238,239 210,241,242 213,244,245 207,241,241 216,250,250 219,253,253 121,155,155 216,247,248 215,246,247 205,243,243 188,235,233 202,251,249 214,254,253 221,255,255 220,248,249 219,244,246 220,243,245 213,238,240 217,247,248 226,255,255 221,252,253 149,180,181 192,222,223 232,255,255 210,231,233 137,163,163 222,255,253 212,253,248 202,243,238 202,242,237 215,254,252 221,255,255 217,254,252 204,239,235 220,255,251 206,239,235 223,255,250 199,229,224 232,255,254 229,255,249 221,245,237 135,159,151 218,242,232 211,235,227 221,245,243 221,246,248 230,255,255 200,230,235 206,239,242 210,244,244 204,238,232 227,255,252 149,180,171 202,229,220 162,184,179 130,149,146 149,164,166 152,164,168 153,165,167 162,174,174 154,168,167 231,247,246 134,155,153 221,243,241 234,255,255 205,234,231 213,242,239 213,244,241 -198,232,231 212,244,243 227,253,253 162,183,184 218,233,235 223,236,238 218,233,235 217,235,236 230,254,254 211,239,239 121,153,152 149,183,182 125,157,156 216,248,247 210,238,238 220,246,246 204,230,230 232,255,255 218,244,244 216,242,242 140,168,168 139,167,167 147,175,175 221,249,249 214,242,242 232,255,255 201,227,227 224,250,250 149,173,173 208,229,230 152,173,174 227,255,255 221,255,255 197,237,235 205,242,240 221,252,251 222,248,248 217,241,241 209,235,235 214,242,242 215,247,246 197,231,230 217,251,250 204,238,237 133,164,163 226,252,252 221,242,243 234,255,255 130,161,158 198,233,229 215,250,246 227,255,255 221,254,250 194,227,223 212,243,240 217,248,245 215,244,241 220,247,243 219,244,240 169,192,188 199,222,217 210,232,227 239,255,252 229,250,242 163,187,177 224,248,240 206,231,227 230,255,255 196,225,229 222,252,255 221,254,255 209,243,243 217,253,247 209,244,234 201,232,223 145,174,165 236,255,254 229,247,246 150,165,168 166,181,184 151,169,170 145,166,164 126,147,145 160,182,180 164,188,186 140,164,162 149,176,173 220,247,244 224,251,248 226,253,250 -222,255,255 220,252,251 208,234,234 147,168,169 230,245,247 243,255,255 224,239,241 236,254,255 230,254,254 211,239,239 223,255,254 133,165,164 221,253,252 203,234,233 232,255,255 215,239,239 234,255,255 208,232,230 213,234,235 229,253,251 215,239,239 141,165,163 228,252,252 133,155,153 136,157,158 231,252,250 231,249,250 151,167,166 155,168,170 152,164,164 160,172,174 211,226,228 208,236,236 208,240,239 230,255,255 211,237,237 218,239,240 231,255,255 234,255,255 214,242,242 214,246,245 223,255,255 206,243,241 223,255,255 148,179,178 146,172,172 142,162,163 223,243,244 154,181,178 223,254,251 217,246,243 201,230,227 212,241,238 220,247,244 232,255,255 225,250,246 222,245,241 237,255,255 215,234,231 217,236,233 113,130,126 109,126,122 101,117,110 107,125,118 75,99,89 107,134,125 107,134,130 198,226,226 217,246,250 225,255,255 199,232,235 222,255,255 213,249,243 200,234,227 228,255,252 141,170,161 219,242,238 216,236,237 223,239,245 138,152,158 219,237,238 239,255,255 235,255,254 213,235,233 222,244,242 217,241,239 139,163,161 142,166,164 135,159,157 148,172,170 -199,233,232 213,245,244 228,254,254 207,228,229 166,181,183 214,227,229 223,238,240 231,249,250 207,231,231 227,255,255 223,254,253 207,238,237 151,179,179 231,255,255 207,228,229 227,247,248 224,242,241 228,247,244 225,241,240 227,246,243 237,255,254 220,239,236 152,170,169 177,194,191 239,253,252 138,151,149 146,156,156 170,178,177 233,237,238 186,188,188 239,238,240 172,177,178 241,255,255 214,235,236 228,246,247 215,233,234 232,250,251 212,232,233 215,239,239 204,232,232 213,247,246 192,231,229 205,244,242 210,247,245 205,236,235 142,166,166 222,240,241 165,183,184 214,235,236 232,255,255 223,245,243 218,240,238 234,255,254 227,248,246 213,234,231 225,244,241 146,163,160 226,241,237 95,110,106 129,143,139 102,116,112 103,117,113 124,136,130 102,118,111 121,142,133 90,117,107 103,130,126 82,110,110 228,255,255 212,243,246 207,240,243 210,247,245 201,237,231 227,255,254 205,239,229 132,163,156 140,164,162 224,243,246 235,251,255 241,252,255 162,174,176 160,170,170 138,150,150 163,177,176 222,238,237 239,255,255 216,237,235 228,249,247 177,198,196 203,225,223 -225,255,255 211,243,242 215,241,241 236,255,255 135,150,152 227,240,242 229,244,246 145,163,164 234,255,255 209,235,235 216,244,244 222,250,250 144,170,170 224,245,246 230,250,251 226,242,241 153,164,162 170,178,177 236,244,243 226,234,233 246,255,255 224,237,235 151,164,162 216,227,225 159,170,168 165,173,172 161,166,165 163,165,165 165,165,165 139,137,137 170,164,165 157,155,155 138,143,144 189,198,201 221,230,233 246,255,255 244,255,255 223,238,240 228,249,250 230,255,255 204,238,237 221,255,255 203,243,241 191,228,226 228,255,255 156,180,180 226,241,243 220,235,237 150,170,171 212,233,234 237,255,255 219,237,236 222,240,239 239,255,253 231,248,245 223,238,234 175,189,185 90,104,100 124,135,132 109,120,117 96,107,104 168,179,176 230,242,236 229,243,237 218,239,230 217,244,234 211,238,234 88,119,116 201,231,232 218,252,252 223,255,255 203,240,238 216,252,246 184,221,213 217,251,241 219,250,243 151,175,175 230,249,254 218,232,244 219,228,238 151,154,159 181,180,182 158,160,161 161,166,167 168,176,176 143,155,155 170,184,183 148,164,163 133,151,150 146,167,165 -216,250,249 205,237,236 144,170,170 218,239,240 150,168,169 241,255,255 228,243,245 149,167,168 219,240,241 206,232,232 230,255,255 218,244,244 204,228,228 150,170,171 228,243,245 246,254,254 172,170,170 236,231,230 169,165,164 175,173,172 221,222,220 245,250,248 169,174,172 166,173,170 239,246,243 233,238,236 165,170,168 164,167,165 250,251,249 255,255,254 171,166,165 174,169,170 171,170,172 234,236,237 95,97,98 56,60,61 90,95,96 232,244,244 221,242,240 137,164,161 129,164,160 129,169,164 127,168,163 159,196,192 132,163,160 130,154,152 162,178,177 235,249,248 225,243,244 164,184,185 136,154,153 216,234,233 241,255,255 218,233,229 223,238,234 242,255,250 95,109,103 111,123,117 110,122,116 222,234,228 230,244,238 156,170,164 231,245,241 236,252,245 219,243,233 227,254,244 230,255,252 213,244,241 224,254,255 209,243,243 203,237,237 213,250,246 213,249,243 225,255,254 205,238,231 219,249,244 223,246,248 138,156,163 227,240,254 248,251,255 252,241,249 168,153,157 185,174,177 255,253,255 147,144,146 174,178,179 216,224,224 235,247,247 236,254,253 230,251,249 -207,241,240 227,255,255 214,240,240 149,170,171 227,245,246 146,161,163 223,238,240 228,246,247 151,172,173 219,243,243 213,239,239 222,246,246 230,250,251 32,47,49 20,32,34 42,44,45 58,44,46 49,28,30 56,40,41 54,42,42 43,35,35 44,40,39 176,177,175 234,237,235 154,159,157 171,178,175 242,247,245 152,157,155 158,161,159 247,248,246 230,231,229 171,169,168 166,159,162 255,250,253 88,81,84 95,92,94 86,85,87 234,242,242 237,253,252 218,242,240 227,255,255 198,235,231 211,251,246 200,237,233 215,246,243 229,251,249 151,167,166 230,244,243 224,244,245 224,244,245 145,166,164 161,180,177 212,229,225 239,255,248 229,245,238 103,118,110 115,128,120 104,117,109 108,120,114 244,255,252 235,249,243 226,242,235 153,168,164 224,242,235 229,253,243 217,242,232 213,241,235 219,248,245 216,247,246 199,231,230 225,255,255 199,236,232 213,249,243 203,237,230 222,255,248 214,243,240 222,244,249 57,73,85 73,83,101 61,64,79 255,244,254 179,162,166 249,235,239 162,153,156 186,181,183 231,233,234 172,177,178 159,171,171 229,245,244 219,240,238 -216,250,249 224,255,255 204,230,230 148,169,170 150,168,169 159,174,176 230,248,249 219,239,240 152,173,174 221,245,245 222,246,246 222,243,244 220,238,239 37,49,51 29,36,39 49,42,45 73,46,50 59,26,30 65,36,39 59,37,39 57,41,42 41,31,31 177,173,172 155,158,156 237,242,240 232,241,238 158,169,166 154,165,162 151,162,159 173,182,179 155,164,161 169,172,170 181,172,175 166,152,156 106,92,96 98,89,92 84,77,80 240,242,243 242,252,252 223,241,240 215,244,241 214,247,243 212,247,243 213,248,244 216,245,242 211,233,231 238,254,253 152,168,167 226,247,248 216,240,240 151,173,171 226,247,244 162,182,177 222,240,233 230,247,238 109,126,115 113,129,118 113,129,118 222,237,229 230,247,238 169,187,180 212,233,225 153,173,168 222,244,239 223,247,237 221,246,236 234,255,254 206,233,230 210,241,240 210,242,241 216,250,249 214,249,245 217,251,245 207,241,234 230,255,255 212,238,238 226,245,253 62,77,93 70,78,101 70,74,93 172,169,178 170,165,167 246,243,245 164,163,165 148,152,153 179,184,185 231,241,241 232,244,244 155,171,170 148,166,165 -211,245,244 216,248,247 230,255,255 228,249,250 225,243,244 145,160,162 146,164,165 235,255,255 135,156,157 221,245,245 225,249,249 228,248,249 229,242,244 234,243,246 223,224,228 178,167,170 255,228,234 255,234,239 255,233,237 58,29,32 55,34,36 42,30,30 244,240,239 171,174,172 241,250,247 225,239,235 241,255,254 228,245,241 152,169,165 131,148,144 168,185,181 141,149,148 163,155,156 187,170,174 110,93,97 87,72,76 102,91,94 252,247,249 231,235,236 219,231,231 226,248,246 204,233,230 224,255,252 215,246,243 220,249,246 225,247,245 220,238,237 145,163,162 212,233,234 234,255,255 133,154,155 203,224,221 234,254,249 154,173,164 214,231,220 118,134,123 97,113,102 93,109,98 243,255,249 221,240,231 205,226,218 148,171,163 162,185,181 147,170,165 224,248,238 224,248,238 207,230,225 234,255,255 228,255,254 143,174,171 207,240,236 218,252,246 210,244,237 141,173,168 218,245,242 201,224,226 231,247,255 238,250,255 132,137,162 235,240,255 223,232,241 148,162,161 154,168,167 169,183,182 166,182,181 129,145,144 169,185,184 208,224,223 222,236,235 228,242,241 -202,234,233 218,249,248 210,236,236 222,243,244 226,244,245 232,247,249 140,158,159 148,168,169 168,189,190 136,157,158 236,255,255 217,235,236 232,244,246 240,245,248 245,241,246 255,242,246 197,161,167 255,239,246 70,34,40 78,48,53 57,38,41 182,171,173 152,152,152 153,161,160 154,168,166 226,245,242 206,227,224 222,245,241 149,172,168 153,176,172 221,244,240 169,182,180 178,172,173 174,157,160 103,84,87 102,83,86 95,78,81 193,180,182 172,167,168 178,183,182 149,163,161 81,102,99 46,73,69 223,253,248 231,255,254 222,245,241 223,242,239 239,255,255 150,171,172 215,239,239 153,174,175 237,255,255 234,252,245 148,165,156 240,255,245 107,121,109 117,131,119 133,150,137 212,229,218 215,234,225 239,255,252 230,253,245 221,244,240 141,164,159 217,238,229 239,255,251 208,231,223 214,237,233 224,251,248 209,238,235 138,169,166 214,246,241 146,179,172 119,149,144 227,251,249 235,255,255 228,241,255 233,240,255 242,244,255 138,148,172 219,248,253 210,250,245 127,164,160 210,245,241 216,249,245 216,245,242 214,238,236 167,188,186 153,167,166 164,176,176 -227,255,255 217,248,247 209,235,235 236,255,255 207,225,226 234,249,251 166,184,185 138,158,159 218,238,239 163,184,185 122,142,143 159,174,176 229,236,239 234,235,239 175,169,174 251,233,240 199,166,173 55,17,23 78,45,52 46,23,27 231,216,220 253,248,249 250,255,255 149,163,161 221,242,240 142,167,163 234,255,255 220,247,243 223,250,247 228,253,249 115,139,137 161,175,173 243,238,239 172,155,158 98,79,82 124,103,106 111,90,93 226,207,210 252,239,241 236,231,232 80,86,85 100,114,112 211,232,229 205,230,226 213,238,234 225,248,244 222,243,240 214,235,233 150,170,171 218,237,240 215,233,234 151,168,165 223,237,231 156,170,159 230,242,230 108,121,107 100,110,97 107,120,106 154,168,156 243,255,249 220,239,230 221,244,236 221,244,240 222,244,239 220,239,230 113,133,121 102,123,115 107,129,124 217,240,236 224,251,248 227,255,252 134,164,159 232,255,254 137,164,160 148,170,168 229,248,253 144,153,167 47,51,76 82,81,115 62,71,98 206,243,247 188,239,232 214,255,255 124,170,164 185,226,221 219,255,252 225,255,253 209,233,231 146,162,161 153,165,165 -203,235,234 207,238,237 232,255,255 205,226,227 224,244,245 219,237,238 237,255,255 147,167,168 146,166,167 223,243,244 225,243,244 240,253,255 169,174,177 171,170,174 242,232,238 188,172,179 58,34,42 74,48,54 45,24,32 255,244,248 255,253,255 243,248,249 228,241,243 140,161,159 216,242,242 213,242,239 141,169,169 212,239,236 199,225,225 234,255,255 231,251,252 151,163,163 245,243,243 189,176,178 102,83,86 101,78,82 98,73,77 204,179,183 189,168,171 105,92,94 80,78,78 156,162,161 243,255,255 235,255,253 232,255,251 206,231,227 236,255,255 210,232,230 147,164,167 154,169,172 151,164,166 151,162,160 165,172,167 172,180,170 176,183,170 118,125,110 126,131,116 121,128,115 160,170,158 165,176,166 146,161,153 220,238,231 239,255,255 224,244,239 239,255,245 88,104,93 111,127,120 111,131,126 211,232,229 212,234,232 232,255,253 223,250,246 136,162,156 226,249,245 143,163,164 158,174,181 234,241,255 84,85,113 64,57,94 68,74,103 206,240,246 214,255,255 184,232,226 213,255,253 218,255,254 206,246,241 213,246,242 220,249,246 163,184,182 146,164,163 -208,240,239 212,243,242 151,177,177 222,243,244 235,255,255 239,255,255 195,213,214 162,182,183 221,241,242 161,181,182 220,238,239 225,237,239 225,228,232 254,250,255 255,244,250 38,22,29 50,34,41 34,20,26 255,253,255 168,167,171 232,239,242 220,233,235 199,220,221 164,190,190 210,241,240 228,255,255 142,170,170 226,252,252 231,255,255 211,231,232 214,232,233 165,174,177 163,160,162 175,164,166 99,82,85 105,82,86 130,100,105 171,141,146 129,102,106 101,80,83 255,244,246 156,156,156 150,161,159 161,178,175 126,149,145 154,179,175 129,154,150 233,255,253 149,161,165 170,179,183 233,240,243 170,176,175 153,154,150 178,179,170 235,235,223 112,112,98 122,121,107 111,111,97 130,134,122 157,165,155 177,188,180 153,167,163 134,148,146 236,251,247 232,246,235 121,135,124 93,108,100 101,118,114 217,236,233 237,255,255 130,153,149 215,238,234 224,247,242 152,173,170 165,183,184 138,151,159 230,234,253 78,76,105 73,64,104 58,60,91 215,241,248 213,250,246 212,247,243 200,235,231 224,255,255 204,239,235 210,243,239 219,248,245 196,223,220 166,190,188 -217,249,248 217,248,247 220,246,246 149,170,171 220,240,241 217,235,236 228,246,247 151,171,172 151,171,172 141,161,162 148,166,167 157,169,171 180,183,187 154,148,153 52,38,44 58,44,50 48,41,48 231,231,237 237,241,246 146,157,161 237,254,255 227,250,252 230,255,255 126,157,158 215,246,247 199,230,231 213,241,242 140,163,165 222,241,244 220,235,238 244,255,255 232,239,242 164,163,165 176,168,169 97,83,85 107,84,88 120,88,93 122,88,94 119,87,92 171,146,150 179,162,165 185,179,180 235,240,239 149,163,161 161,182,179 151,176,172 156,183,179 133,155,153 147,158,162 161,165,170 161,162,166 168,168,168 172,168,163 163,158,149 180,174,163 255,252,239 130,123,108 142,136,123 118,116,105 166,167,157 232,236,230 249,255,253 146,154,153 162,173,170 163,174,164 106,120,109 108,123,115 119,134,130 229,246,243 207,228,225 218,239,236 156,178,173 224,246,241 230,251,248 137,152,154 160,171,179 236,237,255 75,70,101 68,58,100 93,87,122 161,167,178 232,246,245 225,241,240 239,255,255 224,245,243 220,244,242 231,255,255 209,238,235 228,255,255 214,245,242 -205,239,238 146,178,177 138,164,164 149,169,170 147,162,164 232,245,247 242,255,255 221,236,238 159,177,178 218,236,237 237,252,254 245,255,255 230,229,233 55,46,49 58,40,47 47,31,38 252,245,250 164,163,167 241,239,245 166,169,173 234,243,247 213,231,232 223,248,250 212,243,242 208,238,239 157,185,185 144,165,167 219,237,238 160,172,176 231,243,245 234,245,249 237,244,247 168,170,171 164,159,160 101,88,90 109,90,93 99,72,76 109,79,84 112,82,87 119,94,98 188,169,172 161,153,154 242,242,242 169,180,178 215,232,229 222,245,241 217,244,240 226,250,248 241,255,255 221,230,234 242,249,252 156,161,160 160,161,159 182,179,174 160,158,148 178,174,163 169,165,154 126,122,111 125,123,113 117,118,108 124,126,120 224,228,223 250,255,253 156,163,158 161,170,160 103,114,104 108,121,113 107,121,117 225,239,237 231,250,247 222,241,238 148,170,165 227,249,244 226,245,242 242,255,255 146,155,165 168,169,190 70,65,97 84,71,115 66,56,92 248,246,255 143,147,148 177,182,183 146,156,156 234,248,247 230,248,247 213,237,235 221,250,247 207,240,236 210,245,241 -204,242,242 204,238,238 220,246,246 231,249,250 150,159,162 161,166,169 157,162,163 164,172,172 145,157,157 244,255,255 232,244,244 227,235,234 250,247,249 53,40,42 48,26,31 62,39,44 42,22,27 66,46,51 62,35,44 56,33,38 68,50,57 46,41,43 209,221,223 225,246,244 229,253,253 223,244,242 242,254,255 151,156,157 157,160,164 174,179,180 224,237,239 232,246,245 164,169,170 244,243,245 86,79,82 100,89,92 95,78,82 182,160,165 107,85,90 105,83,88 104,87,91 176,165,168 168,165,167 250,255,255 137,151,150 230,251,249 212,236,234 226,252,252 209,237,238 232,255,255 213,236,238 237,255,255 232,248,247 212,225,223 172,181,178 151,158,153 238,242,237 247,249,243 105,107,101 129,132,123 107,110,101 121,124,115 111,115,109 123,128,119 121,129,118 107,115,105 103,111,104 119,130,127 224,237,235 230,244,242 239,255,255 215,234,231 154,173,170 218,236,235 166,178,182 151,157,170 228,227,253 81,75,110 70,57,103 81,70,108 157,154,169 242,246,247 157,162,163 234,244,244 168,182,181 136,154,153 235,255,255 210,237,234 207,238,235 224,255,253 -217,255,255 215,249,249 227,253,253 222,237,239 241,248,251 248,251,255 161,163,164 235,240,241 154,164,164 157,169,169 146,159,157 151,159,158 181,179,179 45,34,36 57,36,39 62,37,41 64,41,46 54,28,34 60,26,33 64,30,37 46,20,26 50,36,40 248,255,255 229,250,248 222,244,242 211,232,230 234,242,242 173,175,176 242,241,243 236,241,242 145,163,162 155,176,174 154,164,164 222,226,227 91,90,92 96,91,93 100,89,92 188,173,177 255,239,243 88,71,75 90,75,79 105,94,97 164,161,163 233,237,238 168,180,180 230,248,247 227,251,249 216,244,244 211,245,245 201,236,239 220,251,252 205,233,234 221,245,245 231,251,252 138,154,153 179,192,190 167,176,173 246,253,250 243,249,244 231,235,229 127,131,125 112,117,108 129,132,123 105,111,100 120,126,115 116,124,114 128,135,130 163,174,171 144,156,156 159,173,172 208,226,225 237,255,255 151,170,167 226,244,243 224,236,242 169,177,190 153,152,178 53,47,82 96,85,131 65,57,94 238,239,253 167,175,175 155,165,165 135,149,148 226,242,241 227,248,246 138,160,158 154,181,178 150,179,176 193,222,219 -187,225,225 205,239,239 226,252,252 213,231,232 240,249,252 232,237,240 166,170,171 234,242,242 154,166,166 237,251,250 238,255,252 240,253,251 222,227,226 244,239,240 255,248,250 158,141,144 178,163,167 170,153,157 255,250,255 205,179,185 182,162,167 237,230,233 219,233,232 209,236,233 220,249,246 231,255,255 150,164,163 141,149,149 238,243,244 238,250,250 218,242,240 217,241,239 237,251,250 250,255,255 82,86,87 86,85,87 86,79,82 174,163,166 176,162,166 191,177,181 106,95,98 93,86,89 76,73,75 166,171,172 221,233,233 160,178,177 209,231,229 216,244,244 218,252,252 213,248,251 209,240,241 132,162,163 163,189,189 222,243,244 151,169,168 215,229,227 150,161,158 152,161,158 226,233,228 164,171,164 162,169,162 242,250,240 156,161,152 244,252,242 158,166,156 228,236,229 219,230,227 237,250,248 231,245,244 216,234,233 158,179,177 139,161,159 227,248,245 147,168,166 231,248,251 216,228,240 163,168,189 87,86,118 67,59,100 64,60,95 226,235,245 220,236,235 239,255,255 145,166,164 150,172,170 159,181,179 217,241,239 210,237,234 219,246,243 175,202,199 -223,255,255 210,241,242 223,249,249 236,254,255 146,158,160 145,152,155 232,240,240 163,173,173 157,173,172 224,242,241 212,233,230 216,233,230 162,173,171 168,170,170 245,240,241 185,177,178 179,174,176 245,236,239 250,233,237 176,156,161 174,160,164 255,254,255 228,249,247 226,255,254 197,232,228 220,251,248 152,170,169 169,181,181 168,178,178 235,251,250 205,234,231 227,255,253 216,234,233 229,241,241 81,89,89 78,82,83 97,96,98 249,244,246 172,163,166 246,237,240 249,242,245 92,87,89 89,88,90 86,91,92 170,182,182 210,228,227 156,178,176 227,255,255 201,235,235 215,250,253 218,252,252 220,250,251 203,229,229 153,174,175 151,169,168 238,254,253 166,179,177 157,168,165 241,250,247 163,170,165 163,170,165 233,241,234 245,252,245 153,161,154 153,164,156 246,255,252 238,251,249 203,219,218 239,255,255 237,255,255 221,242,243 222,246,244 225,250,246 144,166,164 226,246,247 222,238,245 152,159,178 72,75,103 50,48,84 85,87,117 225,242,251 223,247,245 212,236,234 142,169,166 219,246,243 218,245,242 213,240,237 231,255,253 218,240,238 208,230,228 -200,234,234 213,243,244 139,163,163 151,171,172 163,176,178 161,173,175 242,255,255 218,234,233 138,159,157 153,175,173 227,252,248 236,255,255 232,249,246 138,151,149 159,165,164 163,168,167 155,159,160 248,250,251 251,242,245 181,170,173 155,150,152 169,177,177 205,229,227 211,248,244 213,253,248 218,253,249 212,236,234 138,156,155 219,235,234 145,167,165 218,251,247 203,236,232 236,255,255 208,224,223 93,105,105 79,89,89 78,83,84 162,164,165 241,238,240 164,161,163 228,225,227 255,254,255 80,84,85 70,78,78 81,95,94 147,165,164 151,172,170 214,240,240 206,240,240 223,255,255 205,239,239 217,248,249 230,255,255 221,245,245 212,233,231 152,168,167 149,162,160 150,161,158 181,192,189 228,238,232 137,147,141 248,255,251 241,249,242 161,172,164 158,170,164 214,229,225 240,255,255 237,255,255 220,239,242 203,226,228 215,241,241 217,246,243 213,243,238 203,230,226 147,171,169 231,251,255 222,235,249 69,77,100 71,75,104 62,69,94 144,168,174 208,239,236 219,250,247 136,167,164 214,245,242 223,252,249 230,255,254 204,226,224 232,253,251 163,181,180 -207,237,238 160,188,189 133,157,157 153,173,174 143,161,162 144,159,161 155,173,172 156,177,175 149,173,171 134,161,158 207,234,230 219,246,242 218,241,237 232,251,248 160,174,172 221,234,232 161,173,173 228,236,236 177,174,176 157,152,154 250,249,251 161,173,173 223,252,249 208,248,243 214,255,250 191,228,224 234,255,255 167,185,184 214,232,231 236,255,255 129,164,160 223,255,255 202,229,226 237,255,255 209,227,226 236,250,249 225,235,235 155,163,163 251,255,255 244,246,247 178,180,181 221,225,226 250,255,255 171,181,181 212,226,225 163,181,180 152,173,171 139,166,163 220,254,254 192,230,230 205,241,241 215,246,247 215,243,243 211,235,235 229,250,248 223,241,240 232,246,244 154,167,165 149,163,159 149,160,157 181,192,189 152,164,158 218,228,222 232,244,238 166,181,177 223,240,237 213,231,232 224,245,247 211,233,238 226,253,255 218,248,249 225,255,254 213,247,241 228,255,254 135,162,158 215,239,239 220,237,246 61,73,91 54,61,86 67,81,100 220,247,251 132,165,161 219,252,248 147,180,176 210,241,238 212,241,238 212,236,234 235,255,254 219,235,234 150,166,165 -224,252,253 212,240,241 222,246,246 226,247,248 230,250,251 222,242,243 144,166,164 216,240,238 215,242,239 169,200,197 194,226,221 226,255,253 207,237,232 229,255,252 149,172,168 228,249,246 129,147,146 174,186,186 237,239,240 170,167,169 237,239,240 159,171,171 126,155,152 214,254,249 206,247,242 222,255,253 202,224,222 156,172,171 153,169,168 216,237,235 136,169,165 206,243,239 219,250,247 230,254,252 142,164,162 156,177,175 223,239,238 222,236,235 157,167,167 161,169,169 233,241,241 152,160,160 222,232,232 244,255,255 142,156,155 227,243,242 154,172,171 142,166,164 213,247,247 202,240,240 223,255,255 206,240,240 217,248,247 224,250,250 229,251,249 230,248,247 227,244,241 156,170,168 220,233,231 163,177,173 135,149,145 152,166,162 174,185,182 241,255,251 138,155,152 226,247,245 227,248,250 217,239,245 220,244,250 215,244,249 201,232,233 212,246,245 208,244,238 213,250,242 123,156,149 149,178,175 218,240,245 236,253,255 229,243,255 214,230,246 217,242,246 223,254,251 199,230,227 134,163,160 228,255,252 229,253,251 235,255,254 215,233,232 229,243,242 158,172,171 -209,234,236 230,255,255 222,248,248 211,235,235 225,249,249 232,255,255 135,162,159 222,249,246 217,246,243 198,229,226 228,255,255 203,235,230 214,246,241 136,168,163 143,173,168 139,166,162 158,179,177 154,168,167 162,166,167 160,159,161 171,173,174 153,165,165 142,169,166 138,173,169 127,164,160 214,247,243 232,253,251 232,244,244 145,157,157 229,247,246 154,183,180 133,168,164 220,251,248 202,231,228 214,241,238 227,251,249 153,175,173 153,171,170 148,164,163 154,168,167 155,167,167 234,246,246 237,251,250 221,235,234 166,182,181 145,161,160 145,163,162 227,251,249 217,251,250 203,241,241 206,242,242 217,251,251 215,246,245 136,162,162 156,178,176 220,241,239 146,162,161 231,248,245 159,173,171 231,244,242 229,242,240 158,172,168 147,161,157 224,238,236 157,175,174 156,177,178 204,226,231 218,242,248 230,255,255 197,227,232 225,255,255 206,243,241 207,245,239 213,250,242 148,182,175 209,241,236 222,247,249 211,232,240 232,248,255 217,234,247 226,247,249 212,236,234 232,255,254 155,179,177 135,157,155 220,241,239 221,239,238 236,252,251 230,244,243 152,164,164 -215,238,240 226,251,253 219,245,245 214,242,242 215,243,243 218,249,248 205,234,231 152,181,178 213,242,239 218,247,244 223,253,248 206,238,233 138,170,165 216,248,243 217,251,245 219,249,244 143,165,163 158,172,171 237,241,242 174,171,173 158,157,159 237,245,245 145,167,165 214,245,242 215,248,244 218,245,242 225,239,238 237,242,243 167,172,173 228,240,240 215,237,235 141,172,169 136,167,164 219,248,245 220,249,246 224,251,248 212,236,234 227,249,247 219,240,238 228,249,247 150,168,167 150,168,167 152,168,167 232,248,247 153,169,168 231,247,246 139,155,154 165,187,185 204,236,235 221,255,255 199,236,234 219,251,250 220,248,248 220,244,244 216,237,238 155,176,174 161,177,176 138,154,153 159,173,172 228,242,241 224,238,237 153,167,165 163,177,175 147,164,161 232,250,249 147,168,170 229,251,255 215,241,247 207,235,242 213,242,249 210,242,247 215,251,251 214,252,246 214,251,243 227,255,252 120,153,146 229,255,255 231,253,255 208,226,237 229,246,255 151,166,169 163,179,178 150,166,165 140,156,155 235,251,250 166,180,179 138,152,151 236,250,249 230,244,243 234,248,247 -216,239,241 223,248,250 212,240,240 215,246,245 220,252,251 218,250,249 216,249,245 195,226,223 220,249,246 214,241,238 222,249,245 217,244,240 227,255,252 145,177,172 189,223,217 218,250,245 219,243,241 154,170,169 233,237,238 243,240,242 173,172,174 150,155,156 156,177,175 151,180,177 217,246,243 226,248,246 238,246,246 244,246,247 164,163,165 234,239,240 239,255,255 136,163,160 224,253,250 201,232,229 215,244,241 217,246,243 227,254,251 213,240,237 232,255,254 215,239,237 223,245,243 219,240,238 228,249,247 209,227,226 155,173,172 234,250,249 229,245,244 128,150,148 143,175,174 123,160,158 220,254,253 218,250,249 211,239,239 226,250,250 222,242,243 220,238,239 231,247,246 136,152,151 170,184,183 154,168,167 222,236,235 243,255,255 138,152,151 151,167,166 154,172,171 142,162,163 139,161,166 228,252,255 222,250,255 218,247,254 213,245,250 203,239,239 201,238,234 199,236,228 216,251,241 155,188,181 215,242,239 214,237,239 231,249,255 222,238,245 231,243,245 228,238,238 240,250,250 167,177,177 154,164,164 131,141,141 176,188,188 146,158,158 155,169,168 216,230,229 -222,245,247 225,250,252 207,238,237 214,246,245 215,252,250 204,241,239 215,248,244 222,253,250 151,178,175 124,146,144 237,255,255 226,247,244 224,247,243 217,244,240 143,175,170 219,251,246 216,240,238 222,240,239 162,167,168 175,174,176 174,173,175 223,228,229 232,250,249 134,158,156 158,182,180 125,143,142 233,237,238 250,247,249 138,135,137 178,182,183 223,239,238 223,247,245 136,163,160 230,255,255 213,242,239 221,250,247 125,154,151 222,251,248 220,247,244 212,239,236 217,241,239 218,242,240 221,243,241 231,252,250 212,230,229 155,173,172 238,254,253 236,255,255 217,248,247 206,240,239 137,169,168 223,254,253 218,244,244 219,243,243 237,255,255 145,163,164 161,176,178 222,235,237 151,163,165 172,184,186 214,227,229 147,160,162 223,236,238 241,255,255 159,177,176 143,164,162 148,169,171 218,240,246 141,167,174 215,243,250 205,237,242 222,255,255 225,255,255 206,243,235 211,245,235 224,255,248 142,167,163 220,241,242 150,169,174 161,175,181 245,254,255 146,151,152 171,176,177 142,147,148 166,174,174 164,172,172 154,164,164 165,177,177 150,164,163 149,165,164 -222,245,247 228,253,255 207,239,238 207,244,242 212,251,249 201,240,238 210,245,241 220,249,246 230,252,250 147,165,164 137,151,149 153,167,165 210,227,224 231,252,249 225,252,248 135,165,160 228,255,254 223,244,242 162,170,170 145,147,148 232,234,235 174,182,182 219,240,238 228,252,250 214,238,236 150,166,165 178,182,183 253,248,250 198,193,195 155,157,158 224,238,237 225,247,245 140,164,162 207,234,231 147,174,171 222,251,248 230,255,255 157,186,183 199,228,225 230,255,255 212,241,238 222,249,246 154,178,176 219,241,239 229,250,248 147,165,164 221,237,236 210,231,229 226,254,254 212,244,243 205,236,235 136,164,164 217,241,241 236,255,255 212,230,231 230,245,247 219,232,234 165,177,179 159,171,173 151,163,165 243,255,255 224,237,239 167,180,182 207,220,222 219,236,233 239,255,255 147,166,169 143,162,169 144,165,173 221,247,254 209,237,244 214,245,248 212,245,241 209,243,236 217,248,241 203,231,225 157,180,176 146,166,167 228,244,250 227,239,245 152,159,162 168,173,174 157,162,163 245,250,251 172,180,180 227,235,235 227,237,237 225,237,237 233,247,246 169,185,184 -213,238,240 224,252,253 208,242,241 205,244,242 213,253,251 214,254,252 216,251,247 200,229,226 213,231,230 244,255,255 163,169,168 247,253,252 161,172,170 155,169,167 225,246,243 215,242,238 198,229,226 232,255,255 227,241,240 175,180,181 153,158,159 220,230,230 225,247,245 216,243,240 227,254,251 147,165,164 154,158,159 147,144,146 175,172,174 161,165,166 152,168,167 153,175,173 168,190,188 149,171,169 223,247,245 135,162,159 204,233,230 212,241,238 158,189,186 194,225,222 228,255,255 217,246,243 130,157,154 224,248,246 212,233,231 158,176,175 238,254,253 151,172,170 203,229,229 230,255,255 225,251,251 234,255,255 135,156,157 153,173,174 225,240,242 232,245,247 229,240,244 171,180,184 230,239,243 151,162,166 163,174,178 162,173,177 143,154,158 242,254,255 235,249,247 216,230,228 223,238,240 143,162,167 152,171,179 217,240,248 223,249,255 206,235,239 213,244,241 211,242,235 152,178,172 234,255,252 143,162,159 241,255,255 138,150,156 160,172,178 229,241,243 226,238,238 226,238,238 158,170,170 159,169,169 150,160,160 154,166,166 238,250,250 224,238,237 225,241,240 -214,239,241 220,250,251 211,245,244 205,245,243 204,247,244 212,255,252 209,244,240 160,189,186 169,185,184 147,157,157 159,161,161 154,156,156 243,249,248 220,233,231 150,167,164 147,172,168 223,255,252 187,218,215 239,255,254 145,155,155 173,178,179 240,252,252 235,255,255 202,231,228 216,243,240 230,251,249 177,181,182 170,167,169 233,230,232 166,170,171 230,246,245 221,243,241 210,231,229 227,249,247 224,246,244 225,252,249 149,176,173 216,247,244 209,240,237 218,251,247 206,237,234 209,240,237 143,170,167 233,255,255 227,249,247 132,153,151 235,251,250 217,238,236 156,180,180 211,239,239 219,243,243 204,228,228 229,249,250 147,165,166 166,181,183 235,248,250 230,239,243 144,153,157 227,236,240 161,170,174 212,223,227 241,252,255 155,166,170 158,170,172 146,160,156 243,255,254 219,232,234 160,176,182 224,241,250 128,149,157 230,253,255 225,252,255 223,252,249 223,251,245 218,244,238 146,168,163 231,250,247 135,150,152 244,254,255 228,238,245 164,177,179 228,242,241 170,184,183 229,243,242 132,144,144 238,250,250 244,255,255 151,165,164 162,176,175 219,235,234 diff --git a/ReCapcha/Test/obj/Debug/AutoRecogize.csproj.GenerateResource.Cache b/ReCapcha/Test/obj/Debug/AutoRecogize.csproj.GenerateResource.Cache deleted file mode 100644 index 6930b94..0000000 Binary files a/ReCapcha/Test/obj/Debug/AutoRecogize.csproj.GenerateResource.Cache and /dev/null differ diff --git a/ReCapcha/Test/obj/Debug/CaptchaRecogition.pdb b/ReCapcha/Test/obj/Debug/CaptchaRecogition.pdb deleted file mode 100644 index 932dc85..0000000 Binary files a/ReCapcha/Test/obj/Debug/CaptchaRecogition.pdb and /dev/null differ diff --git a/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferences.cache deleted file mode 100644 index 147d93f..0000000 Binary files a/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferences.cache and /dev/null differ diff --git a/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index 3620399..0000000 Binary files a/ReCapcha/Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/ReCapcha/Test/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/ReCapcha/Test/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll deleted file mode 100644 index 5edfbe1..0000000 Binary files a/ReCapcha/Test/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll and /dev/null differ diff --git a/ReCapcha/Yanzhengma/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ReCapcha/Yanzhengma/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index 47d7e24..0000000 Binary files a/ReCapcha/Yanzhengma/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.dll b/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.dll deleted file mode 100644 index 9dfd1c0..0000000 Binary files a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.dll and /dev/null differ diff --git a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.pdb b/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.pdb deleted file mode 100644 index 22b34d1..0000000 Binary files a/ReCapcha/Yanzhengma/obj/Debug/Yanzhengma.pdb and /dev/null differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/.suo" "b/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/.suo" new file mode 100644 index 0000000..2ab3eca Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/.suo" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/Server/sqlite3/db.lock" "b/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/Server/sqlite3/db.lock" new file mode 100644 index 0000000..e69de29 diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/Server/sqlite3/storage.ide" "b/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/Server/sqlite3/storage.ide" new file mode 100644 index 0000000..04440bd Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/.vs/\345\217\221\347\245\250\350\257\206\345\210\253/v16/Server/sqlite3/storage.ide" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.dll" "b/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.dll" new file mode 100644 index 0000000..b05c8cf Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.dll" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.pdb" "b/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.pdb" new file mode 100644 index 0000000..a284ae6 Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/libs/ImageProcess.pdb" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Form1.cs" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Form1.cs" index 51fa0c9..7f18183 100644 --- "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Form1.cs" +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Form1.cs" @@ -98,7 +98,7 @@ void device_NewFrame(object sender, AForge.Video.NewFrameEventArgs eventArgs) } catch (Exception ex) { - File.AppendAllText("e:\\error.txt",ex.Message); + File.AppendAllText("error.txt",ex.Message); throw; } diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Process.cs" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Process.cs" index 94514b6..37f598c 100644 --- "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Process.cs" +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Process.cs" @@ -3,15 +3,11 @@ using System.Collections.Generic; using System.Drawing; using System.IO; -using System.Linq; -using System.Reflection.Emit; -using System.Text; -using System.Threading; using AForge; using AForge.Imaging; using AForge.Imaging.Filters; using AForge.Math.Geometry; -using CaptchaRecogition; +using Point = System.Drawing.Point; namespace 发票编号识别 { @@ -19,13 +15,14 @@ public class Process { protected const int InvoiceWidth = 360; protected const int InvoiceHeight = 230; + public InvoiceCollection GetInvoiceCollection(Bitmap source) { - InvoiceCollection collection = new InvoiceCollection(); //Collection that will hold cards + InvoiceCollection collection = new InvoiceCollection(); //Collection that will hold cards Bitmap temp = source.Clone() as Bitmap; //Clone image to keep original image FiltersSequence seq = new FiltersSequence(); - seq.Add(Grayscale.CommonAlgorithms.BT709); //First add grayScaling filter + seq.Add(Grayscale.CommonAlgorithms.BT709); //First add grayScaling filter seq.Add(new OtsuThreshold()); //Then add binarization(thresholding) filter temp = seq.Apply(source); // Apply filters on source image @@ -34,7 +31,7 @@ public InvoiceCollection GetInvoiceCollection(Bitmap source) extractor.FilterBlobs = true; extractor.MinWidth = extractor.MinHeight = InvoiceHeight - 50; extractor.MaxWidth = extractor.MaxHeight = InvoiceWidth + 50; - extractor.ProcessImage(temp);//去掉不符合宽高的色块 + extractor.ProcessImage(temp); //去掉不符合宽高的色块 //Will be used transform(extract) cards on source image QuadrilateralTransformation quadTransformer = new QuadrilateralTransformation(); @@ -58,11 +55,12 @@ public InvoiceCollection GetInvoiceCollection(Bitmap source) { invocieImg.RotateFlip(RotateFlipType.Rotate90FlipNone); //Rotate } + invocieImg = resizer.Apply(invocieImg); //归一化图像 // File.AppendAllText("e:\\info.txt", "aaaaaaaaaaaaaaa"); // File.AppendAllText("e:\\info.txt",invocieImg.FrameDimensionsList.ToString()); - //invocieImg.Save("e:\\" + Guid.NewGuid() + ".jpg"); - // Thread.Sleep(1000); + //invocieImg.Save("e:\\" + Guid.NewGuid() + ".jpg"); + // Thread.Sleep(1000); Invoice invoice = new Invoice(invocieImg, corners.ToArray()); //Create invoice Object Bitmap target = invoice.GetTarget(); //try @@ -77,105 +75,107 @@ public InvoiceCollection GetInvoiceCollection(Bitmap source) try { - invoice.Code = ImageProcess.GetYZMCode(target, "zimo.txt", 4, 20, 30, 2, false, 4); + invoice.Code = ImageProcess.ImageProcess.GetCAPTCHACode(target, "zimo.txt", 4, 20, 30, 2, false, 4); collection.Add(invoice); //Add card to collection } catch (Exception ex) { - File.AppendAllText("E:\\error2.txt", ex.Message + "**********" + ex.Source+"---"+DateTime.Now); + File.AppendAllText("E:\\error2.txt", ex.Message + "**********" + ex.Source + "---" + DateTime.Now); throw; } - } + return collection; } - public System.Drawing.Point GetStringPoint(System.Drawing.Point[] points) + + public Point GetStringPoint(Point[] points) { - System.Drawing.Point[] tempArr = new System.Drawing.Point[points.Length]; + Point[] tempArr = new Point[points.Length]; Array.Copy(points, tempArr, points.Length); Array.Sort(tempArr, new PointComparer()); return tempArr[0].X < tempArr[1].X ? tempArr[0] : tempArr[1]; } } + /// - /// 发票图片 集合 + /// 发票图片 集合 /// public class InvoiceCollection : CollectionBase { - public void Add(Invoice invoice) + + public Invoice this[int index] { - List.Add(invoice); + get => List[index] as Invoice; + set => List[index] = value; } - public Invoice this[int index] + public void Add(Invoice invoice) { - get { return List[index] as Invoice; } - set { List[index] = value; } + List.Add(invoice); } + public List ToImageList() { List list = new List(); - foreach (Invoice invoice in this.List) + foreach (Invoice invoice in List) list.Add(invoice.Image); return list; } } + /// - /// 发票图片类 + /// 发票图片类 /// public class Invoice { //375 330 protected const int InvoiceWidth = 360; protected const int InvoiceHeight = 230; - private Bitmap image; - private System.Drawing.Point[] corners; - public System.Drawing.Point[] Corners - { - get { return this.corners; } - } - public Bitmap Image - { - get { return this.image; } - } + public Invoice(Bitmap bmp, IntPoint[] cornerIntPoints) { - this.image = bmp; + Image = bmp; //Convert AForge.IntPoint Array to System.Drawing.Point Array int total = cornerIntPoints.Length; - corners = new System.Drawing.Point[total]; + Corners = new Point[total]; for (int i = 0; i < total; i++) { - this.corners[i].X = cornerIntPoints[i].X; - this.corners[i].Y = cornerIntPoints[i].Y; + Corners[i].X = cornerIntPoints[i].X; + Corners[i].Y = cornerIntPoints[i].Y; } } + + public Point[] Corners { get; } + + public Bitmap Image { get; } + + public string Code { get; set; } + /// - /// 截取发票编号 + /// 截取发票编号 /// /// public Bitmap GetTarget() { - if (image == null) + if (Image == null) return null; - // Crop crop = new Crop(new Rectangle(70, 157,130, 20)); + // Crop crop = new Crop(new Rectangle(70, 157,130, 20)); //Crop crop = new Crop(new Rectangle((int)(InvoiceWidth*0.31),(int)(InvoiceHeight*0.75),(int)(InvoiceWidth*0.60),(int)(InvoiceHeight*0.09))); - Crop crop = new Crop(new Rectangle((int)(InvoiceWidth * 0.19), (int)(InvoiceHeight * 0.73), (int)(InvoiceWidth * 0.33), (int)(InvoiceHeight * 0.12))); - return crop.Apply(image); + Crop crop = new Crop(new Rectangle((int) (InvoiceWidth * 0.19), (int) (InvoiceHeight * 0.73), + (int) (InvoiceWidth * 0.33), (int) (InvoiceHeight * 0.12))); + return crop.Apply(Image); } - - public string Code { get; set; } } - public class PointComparer : IComparer + public class PointComparer : IComparer { - public int Compare(System.Drawing.Point p1, System.Drawing.Point p2) + public int Compare(Point p1, Point p2) { return p2.Y.CompareTo(p1.Y); } } -} +} \ No newline at end of file diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Resources.Designer.cs" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Resources.Designer.cs" index 6630aa4..aa7ca9f 100644 --- "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Resources.Designer.cs" +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Resources.Designer.cs" @@ -1,17 +1,17 @@ //------------------------------------------------------------------------------ // // 此代码由工具生成。 -// 运行时版本: 4.0.30319.34014 +// 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 -// 重新生成代码,这些更改将丢失。 +// 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ -namespace 发票编号识别.Properties -{ - - +namespace 发票编号识别.Properties { + using System; + + /// /// 一个强类型的资源类,用于查找本地化的字符串等。 /// @@ -19,51 +19,43 @@ namespace 发票编号识别.Properties // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen // (以 /str 作为命令选项),或重新生成 VS 项目。 - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - + internal class Resources { + private static global::System.Resources.ResourceManager resourceMan; - + private static global::System.Globalization.CultureInfo resourceCulture; - + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { + internal Resources() { } - + /// - /// 返回此类使用的、缓存的 ResourceManager 实例。 + /// 返回此类使用的缓存的 ResourceManager 实例。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("发票编号识别.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } - + /// - /// 为所有资源查找重写当前线程的 CurrentUICulture 属性, - /// 方法是使用此强类型资源类。 + /// 重写当前线程的 CurrentUICulture 属性 + /// 重写当前线程的 CurrentUICulture 属性。 /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { + internal static global::System.Globalization.CultureInfo Culture { + get { return resourceCulture; } - set - { + set { resourceCulture = value; } } diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Settings.Designer.cs" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Settings.Designer.cs" index 16d2f20..0810827 100644 --- "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Settings.Designer.cs" +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/Properties/Settings.Designer.cs" @@ -1,28 +1,24 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.34014 +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ -namespace 发票编号识别.Properties -{ - - +namespace 发票编号识别.Properties { + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { + + public static Settings Default { + get { return defaultInstance; } } diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/app.config" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/app.config" new file mode 100644 index 0000000..312bb3f --- /dev/null +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/app.config" @@ -0,0 +1,3 @@ + + + diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/bin/Debug/Yanzhengma.dll" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/bin/Debug/Yanzhengma.dll" deleted file mode 100644 index 4710677..0000000 Binary files "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/bin/Debug/Yanzhengma.dll" and /dev/null differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache" index 1aafe02..5322613 100644 Binary files "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache" and "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache" index 2a111d1..3473297 100644 Binary files "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache" and "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll" new file mode 100644 index 0000000..ee49915 Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/build.force" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/build.force" new file mode 100644 index 0000000..e69de29 diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj.CoreCompileInputs.cache" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj.CoreCompileInputs.cache" new file mode 100644 index 0000000..f7f8a8b --- /dev/null +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj.CoreCompileInputs.cache" @@ -0,0 +1 @@ +d8240f6620249b2ee77f750855dabf29c9db9d77 diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csprojAssemblyReference.cache" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csprojAssemblyReference.cache" new file mode 100644 index 0000000..ff33240 Binary files /dev/null and "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/obj/x86/Debug/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csprojAssemblyReference.cache" differ diff --git "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj" "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj" index cf81a99..7b842f3 100644 --- "a/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj" +++ "b/\345\217\221\347\245\250\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253/\345\217\221\347\245\250\347\274\226\345\217\267\350\257\206\345\210\253.csproj" @@ -1,5 +1,5 @@  - + Debug x86 @@ -10,9 +10,25 @@ Properties 发票编号识别 发票编号识别 - v4.0 - Client + v4.7.2 + + 512 + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true x86 @@ -23,6 +39,7 @@ DEBUG;TRACE prompt 4 + false x86 @@ -32,6 +49,7 @@ TRACE prompt 4 + false @@ -54,6 +72,9 @@ False ..\packages\AForge.Video.DirectShow.2.2.5\lib\AForge.Video.DirectShow.dll + + ..\libs\ImageProcess.dll + @@ -64,9 +85,6 @@ - - ..\发票识别\bin\Debug\Yanzhengma.dll - @@ -89,7 +107,9 @@ True Resources.resx + True + SettingsSingleFileGenerator @@ -101,6 +121,18 @@ True + + + False + Microsoft .NET Framework 4.7.2 %28x86 和 x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + +