Skip to content

Instantly share code, notes, and snippets.

@sxywu
Last active November 9, 2015 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sxywu/2ceaea7f0a4e37ca5a5d to your computer and use it in GitHub Desktop.
Save sxywu/2ceaea7f0a4e37ca5a5d to your computer and use it in GitHub Desktop.
Image processing fun #5
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
</style>
</head>
<body>
<img src="https://pbs.twimg.com/profile_images/3775316964/fe2ba0b0a4f0fb30aaef37c089553a8d.jpeg" width="400" />
<canvas id="canvas"></canvas>
<script>
d3.json('twitter_profile.json', function(image) {
var imageSize = Math.sqrt(image.length);
var scaleFactor = Math.floor(500 / imageSize);
var canvas = document.getElementById('canvas');
canvas.width = imageSize * scaleFactor;
canvas.height = imageSize * scaleFactor;
var ctx = canvas.getContext('2d');
var data = [];
var threshold = 122.5;
// turn it grayscale first
_.each(image, function(pixel) {
data.push(Math.max(pixel[0], pixel[1], pixel[2]));
});
// Atkinson dithering
_.each(data, function(oldPixel, i) {
var newPixel = oldPixel > threshold ? 255 : 0;
var error = (oldPixel - newPixel) >> 3;
data[i] = newPixel;
data[i + 1] += error;
data[i + 1] += error;
data[i + imageSize - 1] += error;
data[i + imageSize] += error;
data[i + imageSize + 1] += error;
data[i + imageSize + 2] += error;
});
data = data.slice(0, imageSize * imageSize);
var imageData = ctx.getImageData(0,0,imageSize * scaleFactor, imageSize * scaleFactor);
_.each(data, function(pixel, i) {
_.times(scaleFactor, function(x) {
_.times(scaleFactor, function(y) {
// first calculate row, then column
var index = Math.floor(i / imageSize) * (imageSize * Math.pow(scaleFactor, 2)) +
(y * imageSize * scaleFactor) +
((i % imageSize) * scaleFactor + x);
index *= 4;
imageData.data[index] = pixel;
imageData.data[index + 1] = pixel;
imageData.data[index + 2] = pixel;
imageData.data[index + 3] = 255;
});
});
});
console.log(imageData)
ctx.putImageData(imageData, 0, 0);
});
</script>
</body>
[[123,99,56],[169,159,101],[163,158,98],[153,138,83],[140,110,82],[115,83,62],[110,82,53],[172,154,95],[168,156,97],[159,143,92],[144,116,80],[112,81,64],[99,75,46],[166,149,86],[166,157,92],[169,159,105],[156,145,91],[159,144,89],[156,138,87],[146,122,81],[138,108,78],[128,99,74],[118,94,69],[105,84,67],[65,47,41],[107,81,62],[132,105,86],[97,78,52],[163,141,94],[157,130,87],[142,110,82],[123,92,68],[125,94,64],[162,137,93],[163,141,91],[165,140,97],[153,122,84],[139,103,75],[121,90,59],[159,140,89],[176,170,115],[181,180,133],[180,177,136],[172,169,126],[173,169,122],[169,164,123],[152,145,119],[101,95,85],[53,49,56],[43,40,54],[41,39,53],[41,39,53],[40,38,51],[39,37,50],[39,36,47],[39,36,45],[38,35,44],[39,36,45],[39,36,45],[40,36,46],[41,35,46],[40,34,44],[40,34,44],[38,33,41],[38,33,40],[39,34,41],[39,34,40],[38,33,39],[38,33,39],[40,31,39],[43,31,41],[44,33,44],[39,32,43],[43,39,47],[49,44,49],[50,46,54],[58,48,49],[91,73,61],[121,91,66],[152,122,77],[173,155,106],[174,163,125],[176,162,117],[169,148,102],[153,117,80],[109,82,49],[172,151,99],[175,165,112],[177,166,120],[176,162,117],[172,155,110],[167,148,99],[162,135,95],[108,81,63],[109,92,62],[174,166,111],[181,176,122],[184,183,135],[181,182,139],[180,181,139],[179,178,136],[177,173,130],[174,170,125],[171,166,118],[171,160,114],[164,147,104],[150,122,85],[130,95,67],[139,104,73],[160,132,93],[162,141,99],[159,137,97],[151,122,83],[123,85,71],[109,69,46],[157,126,77],[170,150,95],[152,135,106],[92,69,53],[162,134,94],[145,110,75],[111,68,49],[146,106,67],[158,125,73],[166,138,89],[162,142,88],[169,153,96],[168,147,94],[164,144,94],[160,134,92],[152,124,87],[140,109,80],[124,92,71],[106,69,59],[91,49,59],[87,45,64],[88,47,62],[88,44,62],[88,43,59],[86,44,59],[85,41,58],[83,40,57],[68,37,51],[46,32,41],[120,95,55],[169,159,100],[165,159,100],[158,142,89],[143,114,84],[119,87,66],[109,82,51],[169,152,92],[169,159,99],[158,146,93],[146,120,80],[115,84,66],[100,74,46],[164,145,84],[166,157,92],[174,164,109],[163,152,97],[165,150,95],[154,138,86],[145,124,80],[139,111,80],[128,98,73],[121,94,69],[105,83,65],[66,48,42],[105,79,60],[136,108,88],[97,78,53],[161,141,95],[157,133,89],[143,114,83],[125,95,70],[117,87,57],[157,132,88],[162,141,91],[162,138,96],[152,122,84],[141,106,77],[122,91,60],[156,138,87],[176,170,115],[182,181,133],[181,180,135],[172,170,127],[171,168,124],[160,155,122],[109,103,91],[55,51,51],[43,43,52],[41,41,52],[41,40,51],[39,38,52],[39,37,50],[39,37,50],[39,36,48],[40,37,48],[40,37,47],[39,36,47],[39,36,47],[40,37,48],[42,36,48],[41,35,46],[40,34,44],[39,34,43],[41,36,44],[43,38,45],[42,37,44],[41,36,42],[40,35,41],[42,33,41],[47,36,44],[52,42,50],[45,38,46],[45,40,50],[49,42,54],[48,44,54],[53,46,55],[60,48,55],[80,59,52],[135,109,76],[174,153,106],[179,167,123],[175,165,117],[172,151,104],[157,121,84],[109,82,49],[173,152,100],[179,169,118],[182,171,125],[181,167,124],[176,160,116],[170,151,105],[163,139,98],[109,85,64],[111,94,63],[175,165,110],[181,174,122],[185,184,136],[182,183,140],[181,182,140],[180,179,137],[177,174,131],[174,170,126],[171,165,118],[169,159,113],[164,148,104],[152,125,87],[128,92,65],[138,103,72],[158,131,91],[158,137,95],[160,138,97],[151,122,83],[120,82,68],[107,69,46],[156,127,77],[171,152,97],[148,133,104],[93,72,55],[161,135,93],[146,112,76],[111,70,50],[146,107,68],[160,127,75],[166,139,89],[164,145,91],[170,154,97],[166,146,92],[163,144,93],[159,135,89],[152,125,86],[140,110,79],[126,93,69],[107,71,59],[89,50,59],[85,47,65],[85,47,61],[85,45,61],[86,43,60],[84,43,59],[85,42,59],[83,40,58],[68,38,52],[47,32,42],[113,89,53],[169,158,97],[167,159,103],[155,139,88],[141,115,81],[120,89,66],[107,81,49],[168,153,92],[169,160,99],[160,149,93],[146,122,79],[115,84,63],[99,72,45],[163,142,85],[172,164,98],[174,165,110],[163,154,97],[166,153,96],[155,141,88],[148,130,85],[140,116,82],[129,100,74],[125,94,69],[107,84,64],[68,49,43],[101,74,57],[137,109,88],[94,76,49],[161,142,97],[157,136,90],[144,117,84],[129,98,74],[119,86,58],[155,129,86],[161,140,92],[161,138,96],[151,123,84],[140,106,75],[122,91,58],[155,137,86],[174,168,114],[181,180,132],[181,180,135],[169,167,126],[165,162,129],[123,119,101],[56,52,55],[43,42,51],[39,41,52],[39,40,50],[40,40,49],[41,40,54],[40,38,51],[39,37,50],[40,37,48],[40,35,47],[41,36,47],[43,38,49],[41,36,48],[39,34,46],[39,33,45],[39,33,45],[43,37,48],[43,37,47],[42,35,45],[38,31,41],[38,31,39],[38,31,39],[39,32,40],[45,34,42],[52,40,47],[62,51,57],[49,41,49],[45,38,48],[47,41,50],[48,44,50],[48,45,53],[49,43,57],[56,47,54],[92,73,59],[158,136,100],[177,164,118],[176,166,118],[173,153,104],[157,122,84],[110,83,51],[177,156,105],[181,172,123],[183,172,128],[182,169,127],[179,163,122],[174,156,114],[167,144,103],[116,92,69],[114,98,64],[177,166,112],[185,177,126],[186,185,138],[185,186,143],[182,183,141],[181,180,138],[178,175,132],[174,170,125],[171,166,118],[171,160,114],[165,149,106],[151,125,87],[126,91,64],[140,106,75],[160,134,94],[164,144,102],[163,142,101],[155,128,89],[119,84,69],[102,68,43],[160,132,81],[171,154,99],[146,132,105],[93,74,57],[161,137,94],[148,115,77],[112,70,50],[146,107,67],[158,126,73],[166,139,88],[166,147,93],[168,152,95],[169,148,95],[166,147,96],[159,136,88],[154,129,88],[141,110,78],[130,95,71],[110,73,61],[88,51,60],[82,47,63],[81,47,60],[81,46,61],[84,43,60],[81,42,58],[84,43,60],[83,41,60],[68,38,53],[48,31,42],[107,84,51],[168,157,94],[170,160,106],[153,137,87],[144,118,82],[121,91,68],[105,80,47],[167,153,90],[170,161,99],[162,150,92],[149,124,79],[118,88,64],[98,73,45],[158,140,84],[173,165,98],[173,166,109],[162,153,96],[166,154,96],[157,143,88],[150,133,86],[139,116,81],[130,103,75],[124,95,68],[111,89,66],[70,50,45],[100,72,56],[138,109,88],[97,76,50],[163,142,99],[158,137,90],[145,118,83],[135,99,76],[117,83,56],[155,129,87],[161,141,92],[162,140,99],[151,124,85],[143,109,76],[123,92,59],[154,135,84],[172,166,113],[176,174,128],[175,174,132],[165,165,129],[141,139,117],[66,62,61],[46,43,52],[40,40,51],[38,39,52],[40,39,51],[41,39,52],[40,38,52],[39,37,50],[39,37,50],[39,36,47],[42,37,49],[41,35,48],[40,34,48],[41,35,48],[39,33,47],[40,34,47],[40,34,46],[41,35,47],[39,33,44],[38,31,42],[37,29,40],[38,30,40],[40,33,41],[43,36,44],[49,39,46],[62,50,54],[66,55,58],[50,42,47],[44,38,46],[46,41,48],[47,42,50],[48,42,52],[48,43,53],[47,43,54],[60,46,50],[120,104,84],[167,155,113],[178,163,116],[173,153,102],[159,124,85],[114,87,54],[174,152,103],[173,164,116],[177,167,123],[176,163,124],[170,155,117],[167,149,110],[163,138,98],[119,95,70],[117,101,64],[178,169,114],[185,179,129],[186,185,137],[184,185,142],[183,184,142],[182,181,139],[180,176,133],[175,171,126],[172,167,119],[170,159,113],[165,148,105],[152,126,87],[125,92,64],[139,106,74],[157,132,92],[161,142,100],[159,139,98],[151,125,85],[113,81,65],[101,70,44],[158,133,79],[170,155,100],[143,131,104],[93,75,57],[161,139,94],[146,113,75],[111,71,50],[145,108,66],[162,130,76],[165,139,88],[165,145,91],[168,151,95],[169,149,95],[165,146,96],[161,139,94],[156,131,91],[140,109,79],[131,96,74],[110,71,60],[90,51,60],[83,47,64],[81,47,60],[81,47,61],[84,44,61],[82,44,61],[82,42,60],[82,42,60],[67,38,54],[49,30,42],[103,79,48],[167,154,92],[170,160,109],[148,132,84],[148,124,85],[123,95,71],[103,77,46],[165,149,90],[171,163,104],[160,148,92],[151,125,80],[123,92,68],[99,74,48],[155,138,84],[172,165,99],[172,166,108],[162,154,97],[167,154,98],[160,144,91],[152,133,87],[142,120,84],[131,104,76],[126,96,71],[115,89,67],[73,54,48],[98,70,53],[140,110,87],[98,78,54],[164,142,99],[160,138,92],[150,120,85],[140,103,78],[121,85,60],[154,127,86],[159,139,91],[161,139,98],[152,126,87],[144,109,75],[127,95,62],[156,136,89],[176,169,119],[179,178,131],[173,172,133],[154,152,127],[72,69,60],[48,45,54],[42,40,50],[40,38,49],[40,38,52],[40,38,52],[40,37,51],[39,38,52],[39,37,51],[39,37,51],[39,37,49],[40,36,49],[40,36,49],[39,34,48],[39,34,48],[40,35,49],[39,35,49],[38,34,47],[38,33,44],[38,32,43],[39,31,43],[40,31,44],[42,32,44],[44,35,44],[49,39,48],[53,40,48],[60,46,49],[69,55,55],[62,51,53],[47,38,45],[47,39,48],[47,40,53],[48,41,54],[47,39,50],[46,41,52],[49,41,52],[67,57,50],[145,133,101],[175,156,110],[175,155,102],[159,124,85],[114,86,52],[175,155,103],[184,173,127],[187,177,134],[185,174,136],[180,166,130],[174,157,119],[168,143,103],[122,96,71],[118,103,66],[177,170,116],[181,177,128],[185,184,138],[185,185,142],[184,184,142],[182,180,140],[180,176,134],[175,171,127],[171,165,118],[169,158,113],[166,149,106],[152,127,88],[126,92,63],[140,107,74],[158,134,93],[163,144,102],[161,142,100],[152,124,89],[112,81,66],[100,70,46],[159,135,81],[170,156,101],[139,127,101],[95,76,59],[163,139,94],[149,115,77],[111,71,49],[147,110,68],[161,130,76],[167,142,90],[163,144,89],[165,148,93],[168,149,95],[164,145,94],[162,140,95],[154,128,89],[143,111,81],[130,94,73],[110,70,62],[92,50,60],[87,46,64],[84,47,60],[84,47,61],[85,46,62],[80,45,61],[81,43,61],[80,42,60],[65,38,53],[48,32,43],[98,74,44],[165,150,90],[170,162,113],[150,136,88],[150,124,85],[125,97,73],[104,76,48],[162,145,91],[169,161,106],[161,149,96],[154,128,85],[126,92,70],[101,74,48],[152,133,81],[170,163,100],[170,166,106],[165,158,102],[166,154,100],[159,143,92],[153,135,90],[143,120,85],[134,104,78],[128,97,72],[117,88,65],[74,56,49],[95,67,50],[142,112,87],[98,79,59],[162,143,98],[161,139,94],[150,121,85],[139,102,73],[120,83,60],[153,125,85],[160,139,90],[161,139,97],[155,128,90],[146,111,77],[131,98,65],[155,133,90],[177,170,120],[178,179,130],[173,173,141],[98,93,85],[51,46,51],[41,39,52],[40,38,52],[40,38,51],[40,38,51],[40,38,51],[41,39,52],[42,40,54],[40,38,52],[38,36,50],[38,36,50],[39,37,50],[36,33,46],[37,33,47],[38,34,48],[38,33,47],[37,35,48],[37,35,47],[38,34,46],[39,33,45],[41,33,44],[43,35,45],[46,36,45],[49,38,46],[51,39,45],[57,41,48],[68,48,51],[86,64,64],[81,61,62],[60,44,48],[49,36,46],[46,40,51],[46,42,53],[47,39,50],[46,39,49],[46,40,49],[49,41,44],[101,88,69],[166,149,107],[175,154,100],[159,125,87],[113,83,46],[171,153,99],[184,170,125],[184,176,131],[184,174,137],[179,167,131],[172,156,118],[166,144,103],[118,94,70],[121,106,70],[179,171,121],[182,178,131],[188,185,142],[187,185,143],[186,184,144],[185,181,143],[180,175,136],[175,171,127],[171,165,119],[169,157,112],[166,149,107],[153,128,88],[125,92,60],[143,110,74],[159,134,93],[164,144,104],[161,145,102],[157,125,95],[112,82,67],[101,72,51],[161,137,83],[171,157,104],[138,125,100],[101,79,63],[165,138,94],[152,115,78],[115,71,50],[149,110,69],[161,129,75],[166,141,89],[164,143,91],[165,148,97],[166,148,97],[166,147,94],[162,140,95],[156,128,88],[144,111,79],[132,96,73],[110,71,62],[94,50,61],[90,47,64],[88,47,59],[87,47,62],[85,45,61],[80,45,60],[80,44,61],[77,42,59],[63,39,53],[44,33,43],[97,72,46],[163,150,91],[169,162,111],[150,137,87],[149,124,84],[126,98,73],[104,76,49],[159,142,87],[170,162,105],[161,150,97],[157,131,87],[130,97,73],[102,73,48],[148,127,76],[171,163,99],[168,162,103],[164,158,102],[167,155,101],[159,143,93],[152,133,89],[142,119,84],[132,103,74],[126,95,69],[119,88,65],[78,59,53],[93,66,49],[144,114,87],[98,78,57],[161,142,97],[161,141,95],[151,123,86],[141,106,75],[120,84,60],[151,124,83],[162,141,92],[163,141,98],[157,130,93],[150,115,85],[133,101,68],[157,135,92],[179,170,121],[179,177,135],[136,134,115],[57,52,58],[46,42,54],[42,40,53],[41,39,52],[40,38,51],[39,37,51],[41,39,52],[43,41,54],[40,38,52],[39,37,51],[40,38,51],[40,38,52],[36,33,47],[39,35,49],[40,35,49],[40,34,48],[40,34,48],[37,34,47],[40,34,48],[41,36,49],[43,37,51],[46,38,50],[48,40,48],[50,39,45],[51,39,43],[55,41,43],[65,46,49],[80,55,55],[93,64,62],[89,61,62],[75,51,57],[57,44,52],[47,39,49],[44,40,52],[45,41,53],[43,37,44],[45,39,49],[47,40,50],[60,49,40],[136,120,88],[173,151,102],[161,127,87],[113,83,46],[171,153,101],[184,171,125],[187,179,134],[185,176,139],[179,168,131],[173,158,118],[170,147,105],[115,92,66],[125,109,73],[180,173,121],[186,182,135],[190,188,144],[187,185,143],[186,184,144],[185,181,143],[181,177,138],[176,172,131],[172,166,121],[169,157,113],[164,147,106],[155,129,90],[124,91,60],[143,110,75],[159,135,94],[165,146,106],[162,146,103],[157,125,95],[111,81,65],[103,73,51],[162,135,82],[174,157,105],[138,124,100],[99,80,63],[165,140,96],[150,113,76],[115,72,51],[150,112,70],[162,131,77],[166,140,88],[163,142,92],[166,147,99],[159,140,92],[166,145,97],[159,138,93],[156,128,88],[146,112,80],[133,97,73],[111,72,63],[92,51,61],[90,49,65],[86,47,60],[85,48,62],[84,45,61],[80,45,60],[81,44,61],[78,43,60],[63,39,53],[46,31,42],[93,69,48],[159,145,89],[168,163,111],[158,147,95],[149,125,82],[129,101,74],[105,77,50],[158,140,87],[171,163,105],[160,150,98],[156,132,87],[131,98,73],[105,76,51],[144,121,72],[172,162,100],[172,167,108],[166,160,105],[163,152,98],[155,141,91],[152,133,91],[143,119,85],[134,105,77],[128,97,69],[123,91,66],[80,62,55],[89,62,46],[146,115,88],[100,79,56],[158,140,95],[163,143,97],[152,126,87],[143,109,75],[120,84,58],[151,124,82],[163,143,93],[166,144,101],[160,134,95],[149,116,85],[136,104,71],[162,139,96],[178,168,121],[163,159,129],[80,76,72],[50,47,58],[43,41,55],[44,42,56],[41,39,53],[41,39,53],[42,40,54],[42,40,54],[42,40,53],[40,38,51],[40,38,51],[40,38,51],[37,35,48],[39,37,48],[41,37,48],[41,36,47],[41,35,47],[40,34,46],[41,34,47],[47,38,51],[49,38,50],[51,39,50],[54,39,51],[57,39,49],[62,41,48],[69,45,49],[74,48,50],[88,60,58],[101,70,63],[108,72,65],[102,66,64],[90,59,61],[70,51,55],[53,43,50],[46,41,52],[45,40,52],[44,37,44],[42,36,45],[44,39,50],[49,39,40],[84,70,54],[162,139,99],[161,127,86],[113,82,48],[173,154,104],[184,172,124],[188,180,137],[186,178,140],[179,169,131],[174,160,118],[169,147,104],[115,92,65],[128,112,75],[182,174,122],[186,182,134],[188,185,142],[188,187,144],[185,183,143],[183,179,141],[180,175,137],[176,172,130],[172,167,122],[169,157,114],[166,149,108],[156,129,90],[125,91,60],[143,110,75],[159,136,94],[166,148,106],[162,146,101],[157,125,94],[111,81,65],[104,75,52],[164,135,83],[175,158,106],[134,121,96],[101,82,65],[163,140,95],[153,116,79],[115,71,51],[151,113,71],[162,130,77],[167,140,89],[160,138,88],[170,149,102],[164,143,98],[166,144,98],[160,138,96],[154,127,88],[144,111,79],[133,97,72],[112,74,63],[93,52,62],[90,48,64],[86,47,60],[85,47,61],[84,45,61],[81,46,61],[79,43,60],[77,42,59],[64,39,53],[49,31,43],[92,67,50],[153,140,84],[170,165,111],[167,156,103],[153,130,86],[132,104,76],[106,77,51],[154,136,83],[170,162,103],[162,153,101],[159,136,91],[134,102,75],[107,77,51],[139,115,68],[172,161,99],[174,168,109],[168,162,106],[164,155,100],[158,143,94],[153,134,93],[146,123,89],[137,108,79],[130,99,71],[125,92,65],[86,67,61],[86,60,45],[147,115,88],[105,83,60],[157,140,95],[164,144,98],[155,129,89],[147,114,78],[124,88,62],[152,124,81],[169,148,97],[169,148,104],[160,135,95],[151,119,85],[138,106,71],[151,129,86],[161,149,108],[114,106,89],[52,47,51],[45,44,52],[43,42,52],[44,41,58],[41,39,54],[42,40,54],[41,39,53],[43,41,55],[41,39,53],[38,36,49],[42,40,53],[40,38,51],[39,37,50],[41,38,50],[42,36,48],[39,33,45],[40,33,46],[45,37,50],[49,40,54],[53,40,53],[58,40,50],[63,41,49],[69,42,48],[83,52,54],[91,57,56],[95,57,53],[107,67,60],[122,86,76],[126,86,75],[121,80,68],[113,75,66],[107,73,69],[87,63,63],[65,49,52],[52,43,50],[46,38,48],[43,34,45],[39,33,42],[40,37,43],[46,38,43],[53,39,40],[132,108,75],[160,126,85],[114,83,51],[174,155,106],[185,173,125],[186,179,137],[186,178,140],[179,171,132],[172,159,117],[168,146,103],[116,93,66],[132,116,79],[182,175,122],[184,181,131],[187,184,141],[187,186,143],[184,182,142],[183,179,141],[181,176,139],[175,170,131],[172,166,122],[170,158,116],[165,148,108],[156,128,89],[127,92,61],[144,112,76],[161,140,97],[166,149,107],[162,147,102],[157,126,93],[110,80,63],[106,77,53],[164,137,84],[174,158,106],[132,117,93],[103,83,66],[165,140,96],[151,115,77],[116,72,51],[151,112,70],[161,130,76],[166,140,86],[165,142,90],[172,151,102],[167,146,99],[162,140,93],[160,138,96],[154,126,88],[145,112,79],[132,97,71],[114,76,63],[95,51,62],[91,48,64],[88,47,60],[87,46,61],[84,44,60],[81,46,61],[81,44,61],[79,44,60],[64,39,53],[50,33,44],[92,71,51],[150,134,85],[172,164,107],[167,156,106],[153,131,93],[131,104,74],[106,79,54],[150,131,83],[170,158,103],[167,154,103],[159,137,91],[136,105,75],[110,79,54],[134,109,69],[171,160,101],[175,169,112],[167,162,107],[166,156,103],[157,142,93],[153,132,92],[147,119,89],[138,107,81],[132,100,73],[124,91,64],[88,67,54],[84,56,43],[147,117,85],[107,84,62],[156,138,98],[165,147,98],[158,134,93],[146,115,82],[125,91,61],[149,121,82],[169,149,100],[171,153,106],[161,140,98],[148,117,84],[136,100,69],[151,128,84],[156,145,112],[73,65,65],[48,45,56],[43,42,50],[43,42,52],[43,40,55],[42,41,55],[41,40,54],[43,41,55],[43,42,56],[39,38,52],[40,39,52],[39,40,53],[38,38,51],[43,41,55],[43,34,48],[41,32,46],[42,36,50],[46,39,51],[49,39,50],[54,39,48],[60,40,47],[72,47,49],[88,57,57],[106,69,66],[116,75,68],[122,81,71],[135,94,80],[144,103,87],[143,105,88],[142,103,86],[136,95,80],[136,96,83],[123,85,75],[106,75,70],[79,55,55],[57,42,49],[47,38,50],[41,34,46],[38,32,42],[38,33,41],[43,36,45],[44,36,44],[81,60,46],[156,115,83],[115,82,50],[173,155,106],[187,172,125],[187,180,137],[184,179,138],[178,170,129],[175,160,117],[168,146,100],[115,94,64],[136,120,83],[183,175,121],[184,182,132],[186,183,140],[187,186,144],[184,184,143],[184,181,141],[180,177,136],[175,170,128],[173,164,122],[170,157,115],[164,147,105],[155,129,90],[123,91,59],[145,114,76],[160,139,96],[167,151,109],[163,145,105],[158,128,93],[108,81,64],[106,79,52],[162,137,86],[177,158,106],[133,114,96],[106,86,65],[165,137,97],[149,113,77],[117,70,49],[152,111,68],[162,130,75],[167,136,85],[164,140,88],[169,150,98],[168,146,98],[166,144,99],[161,137,95],[151,123,84],[145,113,80],[134,97,72],[112,73,61],[93,50,59],[90,48,62],[92,50,61],[90,48,63],[88,46,62],[90,46,63],[89,46,65],[81,44,61],[67,39,53],[51,33,43],[96,75,57],[144,126,82],[171,161,104],[163,154,103],[152,132,92],[133,107,74],[108,81,56],[146,127,79],[173,160,104],[169,156,104],[162,142,94],[139,109,78],[112,81,56],[131,107,69],[169,158,100],[175,168,112],[166,160,106],[165,154,102],[161,146,96],[152,131,91],[150,123,92],[140,109,83],[135,104,75],[130,98,70],[93,72,57],[83,56,42],[144,114,82],[111,87,64],[154,136,97],[166,148,99],[158,135,93],[148,117,85],[128,94,64],[147,120,81],[168,149,100],[170,153,105],[164,144,102],[151,121,88],[139,102,69],[146,123,81],[123,114,92],[54,46,54],[47,44,57],[43,42,52],[44,43,53],[44,41,55],[43,41,55],[39,38,52],[44,43,57],[44,43,57],[41,40,53],[42,40,52],[39,39,51],[41,41,55],[43,39,54],[39,33,47],[43,35,49],[49,38,51],[53,36,46],[60,38,45],[80,50,53],[99,67,67],[116,83,80],[133,98,92],[136,100,90],[147,111,98],[154,119,103],[158,124,105],[160,126,105],[160,125,104],[159,122,103],[154,116,98],[148,110,93],[139,101,87],[122,88,80],[96,68,65],[68,49,55],[52,40,52],[44,35,47],[39,31,42],[38,31,41],[40,34,44],[42,36,46],[56,38,36],[128,89,69],[115,82,54],[174,156,108],[186,172,127],[187,180,137],[183,178,137],[180,172,131],[175,159,118],[170,147,102],[119,96,63],[140,122,84],[183,175,122],[185,184,134],[187,185,141],[186,186,144],[186,185,145],[185,183,142],[182,179,137],[177,171,130],[172,162,121],[170,157,114],[165,148,106],[155,128,89],[125,91,60],[147,116,78],[163,141,99],[168,150,109],[163,147,107],[158,129,94],[109,82,65],[107,80,52],[163,139,88],[177,158,106],[130,112,94],[110,91,67],[166,139,98],[150,113,77],[118,70,50],[155,115,71],[164,132,77],[169,137,88],[164,141,89],[170,152,99],[167,145,96],[165,143,99],[159,135,93],[152,124,85],[145,113,80],[134,98,72],[113,74,62],[93,51,59],[92,49,63],[91,48,60],[91,48,62],[91,48,65],[92,46,64],[90,45,64],[83,46,63],[68,40,54],[50,33,43],[89,66,48],[139,119,78],[171,162,108],[164,154,104],[153,134,93],[139,114,79],[113,84,59],[141,121,74],[173,161,103],[168,157,101],[162,143,93],[141,112,80],[114,82,57],[128,103,65],[168,157,98],[175,168,112],[170,165,111],[164,153,101],[163,149,98],[152,132,90],[151,126,93],[143,114,84],[136,106,76],[131,101,71],[97,77,63],[79,53,41],[144,115,83],[116,91,68],[153,134,97],[166,150,101],[160,138,95],[151,120,86],[131,96,66],[144,117,78],[168,149,100],[169,153,104],[164,144,102],[154,124,89],[138,104,67],[137,115,82],[86,77,71],[51,44,57],[45,42,54],[44,42,54],[45,44,55],[46,43,55],[41,39,52],[42,41,54],[46,45,58],[46,44,58],[42,40,53],[42,40,51],[39,38,50],[44,42,56],[42,36,52],[39,34,46],[47,37,47],[57,36,42],[78,50,52],[113,80,79],[133,99,93],[147,115,106],[159,130,117],[165,139,123],[164,140,122],[164,140,120],[166,142,121],[169,144,121],[167,141,117],[165,136,112],[163,132,109],[162,129,106],[158,123,101],[154,117,98],[139,103,91],[112,80,76],[79,56,61],[58,45,55],[47,37,48],[41,31,42],[38,30,41],[37,31,41],[40,34,44],[50,34,41],[91,60,53],[111,80,57],[175,157,108],[186,174,130],[188,181,140],[185,180,140],[181,173,134],[177,161,122],[173,151,107],[136,107,70],[154,134,93],[183,177,126],[185,183,134],[189,188,144],[189,187,146],[189,187,147],[186,185,143],[184,181,140],[178,172,132],[172,163,122],[171,158,117],[166,149,108],[158,127,90],[126,90,59],[150,117,80],[165,142,100],[168,152,110],[165,149,109],[160,131,95],[112,84,66],[110,83,52],[164,141,89],[177,158,104],[128,110,92],[111,92,68],[166,139,98],[150,114,78],[118,72,51],[154,116,73],[163,131,77],[169,136,90],[163,140,91],[169,151,100],[167,144,96],[162,139,95],[161,135,94],[153,123,85],[146,113,80],[133,96,71],[114,72,61],[95,51,59],[94,49,63],[95,50,61],[95,50,64],[93,49,65],[92,46,63],[89,44,61],[82,44,60],[67,39,53],[50,35,45],[97,74,54],[138,118,78],[172,162,112],[166,157,112],[160,143,104],[147,122,87],[120,90,68],[138,115,71],[172,161,103],[168,158,100],[162,144,92],[144,115,82],[118,85,61],[125,98,61],[170,159,101],[175,168,112],[171,165,111],[165,154,102],[164,152,100],[159,142,97],[153,130,94],[143,116,86],[135,108,75],[133,103,71],[99,80,66],[75,49,39],[142,114,81],[119,96,71],[150,131,95],[167,153,104],[161,141,97],[155,123,88],[133,98,68],[141,113,75],[168,149,100],[171,154,106],[166,146,103],[155,126,88],[142,107,76],[119,97,80],[59,51,54],[50,45,57],[44,41,53],[44,43,56],[45,43,56],[44,41,52],[42,40,52],[44,42,55],[47,45,58],[44,42,55],[42,39,53],[42,38,52],[45,43,56],[45,42,54],[41,35,47],[47,36,43],[59,39,42],[100,72,69],[142,116,106],[159,136,122],[162,141,125],[168,149,132],[170,153,135],[172,156,136],[172,157,136],[173,157,135],[173,156,133],[173,154,130],[170,149,126],[169,146,123],[169,144,121],[167,139,116],[163,133,109],[160,128,105],[151,117,99],[122,90,81],[91,67,68],[64,51,59],[53,42,53],[45,33,45],[39,30,41],[37,31,41],[36,31,41],[44,33,43],[63,41,40],[104,77,57],[177,158,110],[185,174,133],[187,180,141],[186,181,143],[183,174,137],[178,162,125],[174,152,111],[152,117,77],[166,143,98],[183,179,130],[189,185,138],[190,189,145],[190,187,146],[190,186,147],[186,185,143],[182,179,139],[178,172,133],[174,165,125],[174,160,121],[166,148,108],[159,128,91],[125,90,59],[151,120,81],[165,144,101],[169,154,113],[166,151,112],[160,133,96],[113,85,66],[114,86,53],[168,145,91],[178,160,106],[126,109,89],[113,96,70],[168,141,99],[150,113,77],[115,71,50],[153,117,75],[164,132,81],[169,136,92],[163,140,92],[169,151,100],[167,142,94],[161,136,92],[161,133,93],[154,124,86],[147,113,80],[135,96,72],[116,74,63],[97,51,59],[98,51,64],[97,50,61],[97,50,64],[94,49,64],[91,46,61],[90,45,61],[83,46,61],[68,40,52],[52,36,46],[103,79,57],[142,120,82],[173,162,112],[166,156,114],[159,142,105],[147,121,90],[124,91,73],[136,112,71],[172,161,104],[168,159,99],[164,146,92],[147,119,83],[122,89,63],[121,93,58],[170,158,100],[176,170,113],[172,167,112],[166,156,104],[162,150,98],[157,142,96],[147,125,88],[143,117,84],[137,111,77],[132,103,72],[104,83,69],[73,48,37],[140,112,79],[123,99,74],[146,126,91],[167,153,104],[163,142,98],[154,122,87],[137,102,71],[140,112,73],[169,150,101],[169,154,105],[167,147,104],[154,127,87],[142,109,83],[96,74,68],[54,46,53],[49,45,54],[44,41,53],[45,43,56],[45,43,56],[43,40,51],[44,41,54],[45,42,56],[47,45,58],[43,41,54],[44,40,54],[43,37,52],[48,43,58],[44,39,51],[43,33,42],[63,42,43],[112,85,81],[157,130,119],[165,147,128],[165,154,132],[170,157,138],[172,158,141],[174,160,143],[176,161,143],[176,163,143],[176,162,141],[175,159,138],[174,156,135],[172,153,132],[170,150,126],[170,148,124],[170,145,122],[167,139,115],[165,134,110],[156,123,102],[131,99,88],[97,73,73],[68,55,62],[56,44,55],[47,34,47],[41,31,42],[36,30,41],[35,31,41],[41,31,41],[52,36,38],[92,68,49],[177,159,112],[187,176,137],[189,182,143],[187,181,144],[184,174,139],[179,163,127],[174,152,113],[153,117,75],[168,145,98],[183,179,131],[190,186,138],[191,191,146],[191,188,147],[190,187,148],[185,184,143],[182,180,140],[178,172,133],[175,165,126],[174,161,122],[166,149,109],[159,131,93],[124,91,59],[151,123,83],[165,148,105],[169,156,114],[166,151,112],[161,133,96],[116,87,67],[118,89,54],[169,146,90],[176,160,106],[125,109,89],[114,98,70],[167,141,98],[151,115,79],[116,72,52],[152,117,75],[164,133,81],[168,137,92],[162,141,93],[171,153,103],[169,145,97],[166,141,97],[161,134,94],[156,126,88],[148,114,81],[138,99,74],[119,76,65],[98,51,58],[97,49,63],[97,50,61],[98,49,63],[96,50,66],[93,47,63],[92,47,62],[84,46,61],[69,40,53],[54,35,46],[104,82,59],[136,112,82],[165,151,96],[158,144,101],[150,129,91],[135,107,80],[123,89,69],[128,102,65],[173,159,104],[169,159,98],[165,147,93],[151,123,83],[123,92,62],[118,90,58],[170,156,98],[177,169,111],[175,169,113],[166,157,104],[156,145,93],[158,143,97],[139,117,79],[144,116,85],[142,113,83],[134,102,75],[112,85,67],[70,49,36],[143,109,81],[131,103,78],[143,125,89],[166,154,104],[166,143,101],[156,123,90],[141,106,73],[141,111,71],[169,150,101],[167,156,106],[166,148,104],[156,131,90],[138,111,86],[78,62,60],[52,45,54],[50,44,55],[47,41,55],[47,43,57],[46,42,56],[44,41,55],[44,41,55],[47,43,57],[50,46,60],[46,42,56],[43,41,52],[45,41,54],[51,42,59],[42,36,48],[56,35,41],[113,84,78],[157,134,122],[166,151,136],[172,159,143],[176,162,146],[178,163,144],[179,164,145],[179,164,145],[179,164,145],[179,164,145],[178,163,142],[177,160,139],[175,159,136],[173,155,133],[170,150,126],[170,152,126],[173,152,127],[171,146,121],[166,136,112],[156,122,101],[137,104,94],[104,77,78],[70,54,61],[57,45,56],[47,35,47],[42,30,42],[38,31,41],[36,32,41],[42,30,40],[48,35,41],[84,64,48],[178,159,113],[188,175,134],[191,183,144],[189,181,145],[184,174,139],[179,165,130],[174,153,114],[150,119,80],[167,148,102],[182,179,129],[191,187,139],[190,189,143],[190,188,147],[189,187,148],[185,183,143],[182,178,139],[181,172,134],[175,167,127],[172,162,121],[167,148,108],[159,131,92],[125,89,61],[153,126,84],[164,149,110],[171,157,114],[169,154,115],[162,134,96],[118,86,65],[121,93,55],[169,148,89],[176,161,111],[124,108,90],[118,100,69],[167,142,100],[153,116,80],[116,70,50],[155,119,75],[166,137,82],[168,142,92],[166,143,94],[173,153,103],[167,146,99],[165,143,98],[163,140,96],[157,129,92],[147,115,80],[136,100,73],[120,77,67],[98,51,59],[96,48,63],[99,50,63],[99,48,64],[96,48,67],[96,48,65],[95,47,63],[88,47,63],[71,39,55],[55,34,47],[107,85,60],[128,104,72],[163,149,91],[163,150,101],[159,141,94],[147,123,86],[132,101,74],[129,103,64],[172,158,103],[170,160,101],[167,149,98],[151,123,83],[128,95,67],[116,86,57],[170,156,99],[177,169,111],[176,170,114],[168,158,106],[166,156,104],[161,147,100],[148,126,88],[146,119,86],[140,111,79],[135,103,74],[113,86,67],[68,47,35],[141,107,79],[133,107,81],[140,122,87],[169,157,108],[166,144,102],[158,127,92],[143,109,75],[139,108,69],[168,150,101],[169,157,107],[168,150,106],[158,134,97],[125,100,80],[70,56,59],[53,47,59],[47,42,55],[48,44,58],[49,45,59],[45,42,56],[43,41,54],[46,42,56],[47,43,57],[50,46,60],[46,42,56],[44,41,55],[48,45,59],[53,42,57],[51,36,43],[87,63,60],[152,127,115],[172,153,138],[175,161,145],[177,165,147],[182,167,150],[183,168,149],[183,168,149],[183,168,149],[181,166,147],[180,165,145],[180,165,144],[179,162,142],[178,161,139],[175,157,135],[174,155,131],[172,154,130],[172,153,129],[175,151,127],[170,140,118],[160,123,106],[141,106,97],[107,79,81],[71,56,64],[53,44,55],[47,37,48],[42,31,42],[40,31,42],[38,31,42],[41,30,37],[46,34,38],[82,63,47],[177,161,112],[187,176,134],[190,183,144],[190,183,146],[184,175,140],[179,165,130],[175,154,115],[142,111,72],[163,144,99],[183,180,130],[191,187,140],[193,191,147],[192,190,150],[190,188,150],[187,185,146],[185,182,143],[181,173,134],[177,169,128],[173,163,121],[169,150,110],[159,131,92],[128,92,61],[154,128,84],[166,151,113],[172,158,115],[169,156,116],[164,136,98],[119,87,66],[122,95,58],[170,148,90],[178,163,114],[122,106,88],[120,103,71],[168,144,102],[154,116,81],[119,73,51],[156,120,75],[166,136,80],[168,142,92],[164,143,93],[170,151,102],[168,149,102],[168,147,102],[162,139,95],[157,129,91],[149,117,81],[138,102,73],[119,76,65],[101,53,61],[100,50,65],[101,50,63],[100,48,64],[97,47,65],[100,48,65],[98,49,63],[91,48,63],[73,39,54],[58,35,48],[110,87,62],[121,97,66],[171,159,101],[169,159,106],[164,149,95],[155,134,90],[139,110,79],[128,103,62],[173,159,104],[172,162,106],[166,150,99],[154,126,86],[131,97,69],[114,83,55],[167,152,96],[177,168,112],[177,171,117],[166,157,105],[169,160,108],[162,150,102],[157,136,97],[149,124,90],[140,113,80],[135,102,70],[116,88,68],[68,47,36],[139,106,78],[137,112,85],[139,119,86],[169,157,110],[166,144,102],[157,128,89],[147,114,79],[136,106,66],[169,151,102],[171,159,109],[170,152,108],[159,134,100],[115,91,76],[66,55,61],[53,48,62],[48,43,56],[49,46,60],[49,46,60],[46,44,57],[45,43,56],[47,43,57],[46,42,56],[47,43,57],[46,42,56],[46,43,57],[49,44,59],[53,38,50],[70,44,47],[124,98,87],[167,149,132],[176,161,144],[179,166,149],[181,168,151],[184,170,153],[185,171,154],[182,169,152],[182,169,152],[179,166,148],[181,167,148],[183,168,149],[182,165,145],[179,162,142],[176,158,137],[176,157,135],[172,155,132],[173,155,131],[172,152,128],[169,143,122],[163,126,111],[147,108,100],[110,79,79],[71,53,61],[52,43,53],[46,37,48],[43,33,44],[40,31,42],[39,31,42],[41,31,38],[45,33,39],[74,55,42],[173,156,109],[188,177,135],[189,182,144],[188,182,146],[185,176,142],[180,167,132],[176,155,118],[146,115,77],[168,148,105],[185,182,133],[191,187,140],[193,192,148],[193,191,151],[191,189,151],[188,186,148],[185,182,142],[181,172,133],[177,168,127],[172,162,120],[168,149,107],[158,130,91],[128,92,61],[154,129,83],[167,151,114],[173,159,119],[169,156,116],[166,139,100],[118,87,66],[122,97,58],[172,150,93],[178,163,115],[121,105,87],[123,106,73],[168,144,101],[154,117,80],[120,73,51],[156,121,74],[164,135,78],[170,144,94],[163,142,92],[169,151,103],[167,148,102],[169,148,104],[163,140,97],[156,129,91],[149,117,80],[138,102,71],[122,78,65],[104,54,62],[103,51,66],[102,50,63],[101,48,63],[101,47,64],[103,49,64],[101,48,62],[91,46,60],[74,40,53],[56,35,48],[114,90,68],[110,86,58],[171,159,103],[165,157,103],[161,149,93],[153,133,89],[139,111,80],[122,97,56],[174,159,104],[173,164,109],[169,153,101],[158,131,87],[137,103,71],[115,84,54],[166,151,97],[179,170,114],[178,172,118],[167,157,106],[170,160,108],[164,153,103],[158,138,97],[151,125,90],[142,116,81],[141,108,72],[124,95,75],[69,48,37],[138,106,77],[141,117,89],[138,118,85],[168,156,111],[166,147,105],[157,132,91],[148,116,80],[136,105,65],[172,154,105],[171,160,110],[171,153,110],[155,131,97],[106,84,70],[59,51,57],[52,49,60],[48,43,54],[48,46,59],[48,46,59],[45,43,56],[43,43,55],[47,43,57],[48,44,58],[47,43,57],[45,41,55],[51,46,60],[53,44,57],[57,36,44],[101,66,65],[155,131,115],[171,159,138],[177,165,146],[184,171,153],[184,171,152],[185,172,154],[186,173,156],[186,173,156],[186,173,156],[184,171,154],[184,170,152],[185,169,150],[184,167,149],[180,163,144],[178,160,140],[178,159,139],[175,158,137],[175,159,137],[176,157,134],[170,147,125],[164,130,113],[152,113,101],[122,88,84],[79,57,62],[53,41,52],[46,35,46],[44,33,44],[40,32,43],[37,33,42],[41,32,41],[43,31,43],[67,48,40],[163,147,103],[187,178,137],[189,184,146],[189,183,148],[184,177,143],[181,169,134],[178,157,121],[142,111,73],[166,146,103],[186,182,134],[191,187,141],[194,192,150],[193,191,152],[193,191,153],[189,187,148],[186,183,144],[183,174,134],[178,169,128],[173,163,120],[168,150,107],[160,132,92],[128,93,60],[157,131,85],[169,153,117],[173,159,120],[170,158,118],[167,140,101],[118,88,67],[123,98,60],[172,151,94],[180,164,117],[120,104,85],[125,108,75],[168,145,100],[157,119,82],[121,76,52],[158,123,76],[167,138,80],[170,145,95],[165,145,97],[171,153,106],[168,150,104],[169,149,106],[166,143,100],[160,132,94],[149,117,79],[141,106,73],[125,81,67],[105,54,61],[102,49,63],[103,49,62],[102,47,63],[103,46,63],[106,49,64],[102,48,61],[92,47,58],[74,40,52],[55,37,49],[118,93,71],[102,78,54],[168,155,100],[168,160,104],[163,152,95],[153,134,87],[142,114,80],[121,96,58],[171,157,102],[173,165,107],[168,155,101],[160,135,90],[138,104,70],[113,84,53],[163,149,97],[178,171,115],[179,173,121],[170,161,112],[170,160,109],[165,153,105],[160,141,99],[155,130,93],[151,120,86],[146,112,76],[127,98,77],[69,50,40],[134,105,73],[145,120,91],[136,116,83],[171,159,112],[168,150,107],[160,135,95],[152,119,83],[135,103,64],[172,152,104],[170,158,109],[171,154,111],[147,125,93],[98,81,72],[58,52,57],[50,47,57],[48,43,55],[49,44,58],[49,46,60],[45,43,56],[46,45,58],[47,44,56],[49,45,58],[50,47,59],[47,43,57],[52,47,62],[54,42,53],[70,42,46],[128,95,86],[164,141,123],[175,162,142],[183,170,152],[186,173,155],[185,172,154],[186,173,155],[186,174,156],[186,176,158],[188,178,159],[186,174,157],[186,171,154],[185,169,153],[184,168,151],[183,167,149],[180,162,145],[178,161,144],[178,162,144],[178,164,143],[176,160,138],[171,149,128],[167,134,114],[156,118,100],[142,105,96],[94,69,69],[62,44,53],[48,34,45],[42,33,43],[38,34,42],[38,33,41],[38,31,41],[41,31,44],[60,42,38],[153,136,100],[189,178,138],[189,183,146],[187,181,147],[185,177,144],[181,169,134],[178,157,118],[152,123,84],[172,152,108],[187,183,135],[192,189,143],[194,193,149],[193,191,152],[192,190,152],[188,186,148],[187,182,144],[183,174,135],[178,168,129],[173,161,119],[168,152,109],[160,129,91],[131,95,59],[158,133,88],[170,154,115],[176,162,124],[172,158,118],[167,142,101],[121,90,66],[127,101,62],[173,153,97],[179,164,120],[119,103,82],[129,111,81],[168,145,99],[154,118,80],[121,75,50],[160,125,76],[169,140,81],[172,147,97],[167,148,99],[172,155,107],[171,153,108],[170,151,108],[165,142,99],[159,132,93],[151,120,82],[143,107,76],[127,83,70],[104,53,62],[102,49,63],[102,48,62],[102,48,63],[104,48,65],[107,48,65],[104,48,63],[93,45,58],[74,38,50],[53,35,47],[124,97,73],[96,72,50],[166,152,98],[171,162,105],[163,153,95],[158,138,89],[144,116,79],[121,96,60],[170,156,101],[173,163,104],[169,158,102],[161,137,92],[142,109,77],[114,85,55],[159,146,95],[177,170,114],[179,174,124],[170,162,114],[168,157,108],[167,155,108],[162,145,102],[156,131,93],[152,120,86],[146,112,76],[129,99,75],[69,50,40],[131,103,69],[150,125,95],[135,116,82],[172,159,112],[169,152,109],[162,136,97],[153,120,84],[134,101,62],[173,152,105],[174,161,114],[173,156,114],[140,120,90],[89,75,70],[58,52,58],[51,48,57],[51,46,59],[53,47,60],[51,46,60],[47,44,58],[48,46,59],[47,44,57],[50,47,58],[48,44,54],[51,45,59],[53,46,62],[56,40,49],[90,58,56],[147,119,104],[172,152,131],[181,166,147],[187,174,156],[187,174,156],[184,171,154],[186,173,155],[185,173,155],[187,178,159],[188,179,160],[189,178,160],[188,175,158],[187,174,158],[184,172,156],[182,171,154],[179,168,151],[180,169,152],[180,170,152],[181,169,149],[180,164,142],[171,150,129],[167,138,117],[161,125,104],[154,117,101],[120,89,81],[85,60,63],[55,38,45],[42,33,41],[38,33,42],[38,33,40],[37,31,41],[41,34,46],[55,39,37],[135,117,90],[188,176,135],[191,185,148],[188,182,149],[185,178,144],[181,169,132],[179,158,118],[157,129,89],[175,156,112],[188,183,136],[192,190,144],[193,192,148],[193,191,152],[192,190,152],[190,188,150],[189,184,146],[182,174,137],[179,169,132],[174,161,121],[167,152,108],[161,128,92],[134,98,60],[159,133,90],[169,155,113],[176,163,125],[172,156,117],[166,143,99],[122,90,65],[128,101,61],[172,154,98],[179,165,123],[119,104,80],[130,111,85],[169,147,101],[152,116,79],[120,76,50],[161,126,76],[168,142,82],[171,146,95],[167,148,98],[172,155,107],[171,154,109],[170,151,109],[167,145,101],[160,135,95],[154,123,85],[145,109,78],[127,83,71],[106,54,64],[103,50,66],[104,50,64],[105,51,66],[104,50,66],[106,48,66],[105,47,64],[99,45,61],[86,42,56],[65,33,49],[126,99,73],[96,71,49],[164,148,97],[171,161,105],[165,154,97],[158,139,90],[147,120,81],[119,93,57],[168,153,100],[173,163,102],[168,159,101],[162,141,95],[143,111,79],[117,87,57],[156,141,92],[177,171,116],[177,174,125],[172,164,116],[167,156,107],[168,156,109],[162,146,103],[157,133,95],[152,121,87],[145,112,77],[131,101,74],[71,52,42],[129,100,68],[151,127,94],[132,113,81],[173,160,114],[171,155,111],[164,139,98],[155,122,86],[134,100,61],[172,151,105],[176,163,118],[168,151,112],[140,121,94],[83,69,66],[59,53,60],[52,48,57],[52,46,58],[54,48,60],[51,47,61],[49,47,60],[48,46,60],[47,43,56],[50,46,57],[49,43,54],[57,49,62],[53,43,56],[64,43,49],[111,77,72],[160,132,115],[176,158,136],[183,168,148],[187,174,155],[187,173,154],[183,169,150],[187,173,154],[188,175,157],[189,179,160],[188,179,159],[188,176,158],[187,173,156],[187,175,159],[185,175,159],[181,174,156],[179,174,156],[182,175,159],[181,171,154],[182,168,150],[181,163,144],[171,150,131],[166,143,121],[164,134,110],[161,124,104],[147,109,94],[121,90,84],[73,51,53],[46,34,41],[40,33,43],[39,32,41],[36,31,42],[40,35,43],[56,40,41],[118,100,79],[186,175,135],[191,185,148],[189,183,151],[185,177,144],[182,169,133],[179,158,118],[154,127,86],[174,156,111],[188,183,136],[192,190,144],[193,191,150],[193,191,153],[192,190,153],[190,188,149],[188,184,146],[183,176,139],[180,170,133],[175,162,122],[166,152,108],[159,128,91],[136,100,62],[161,137,93],[170,156,114],[175,163,124],[174,158,119],[166,143,100],[121,90,65],[131,105,65],[172,154,99],[179,165,124],[117,101,79],[135,116,90],[169,147,102],[156,119,82],[122,78,53],[159,125,76],[167,141,82],[170,147,96],[165,146,96],[173,156,108],[169,152,108],[169,151,108],[167,148,102],[161,137,96],[155,125,86],[147,110,78],[129,85,71],[107,56,63],[105,53,67],[105,51,64],[104,50,66],[104,50,67],[105,50,66],[106,48,66],[104,46,63],[101,45,63],[96,44,63],[129,102,73],[96,70,47],[159,143,93],[171,159,105],[168,156,100],[160,141,92],[149,123,82],[121,95,57],[165,150,97],[176,166,106],[170,161,104],[162,144,96],[146,116,80],[120,90,58],[157,138,94],[178,172,119],[177,176,126],[174,168,118],[167,155,106],[168,156,109],[163,148,105],[157,135,96],[150,122,87],[149,117,82],[134,104,72],[76,55,46],[126,97,68],[153,130,95],[133,113,82],[171,158,112],[173,157,112],[166,141,99],[158,125,87],[134,101,62],[171,150,105],[176,162,119],[164,147,111],[143,125,101],[77,64,64],[57,49,59],[52,46,56],[54,48,59],[54,48,59],[48,44,58],[49,46,60],[49,47,63],[45,42,56],[49,45,57],[51,45,54],[58,49,60],[55,41,52],[78,51,53],[129,94,85],[168,142,122],[177,160,136],[184,169,149],[187,172,153],[189,174,154],[189,174,155],[190,175,155],[190,176,157],[190,178,158],[187,176,156],[186,173,154],[187,173,155],[188,176,159],[186,175,159],[181,172,157],[176,167,154],[171,161,148],[169,154,141],[169,151,136],[171,150,135],[170,149,131],[170,144,125],[164,137,114],[164,130,107],[157,117,98],[145,110,96],[104,78,73],[55,40,46],[42,33,44],[40,32,44],[36,32,44],[40,36,42],[57,41,48],[108,89,75],[183,172,134],[191,185,148],[190,184,152],[187,180,146],[181,168,132],[179,159,119],[149,124,83],[173,156,111],[188,185,137],[192,191,146],[195,193,154],[194,191,155],[192,189,153],[189,187,148],[187,183,145],[182,177,139],[179,171,133],[175,164,123],[167,153,109],[159,128,91],[136,102,63],[164,141,97],[170,157,115],[177,165,126],[175,160,120],[168,145,102],[120,90,64],[134,109,68],[173,155,100],[179,164,124],[115,99,78],[136,118,93],[169,146,102],[157,119,83],[122,77,53],[161,129,80],[166,143,84],[172,150,98],[168,151,101],[173,158,110],[171,156,110],[171,153,110],[166,149,103],[159,137,96],[153,125,84],[148,112,78],[132,88,72],[108,58,63],[106,54,66],[104,50,63],[104,50,67],[106,51,69],[104,51,67],[102,49,64],[106,49,66],[107,45,63],[107,45,64],[132,104,74],[96,69,47],[154,136,89],[172,160,107],[169,157,101],[163,144,96],[150,123,82],[124,99,60],[160,145,93],[175,164,108],[170,162,107],[162,146,96],[148,119,79],[122,92,56],[154,134,90],[179,173,120],[178,177,127],[176,170,120],[170,159,109],[167,155,108],[165,150,106],[157,137,97],[150,124,88],[152,121,85],[139,109,74],[81,58,50],[125,96,67],[155,133,96],[131,112,82],[175,162,117],[173,157,111],[167,142,100],[161,128,90],[135,102,63],[170,149,105],[178,164,122],[164,146,112],[139,122,99],[74,62,63],[60,52,62],[53,46,57],[55,48,59],[54,48,59],[49,45,57],[49,46,61],[49,46,63],[46,43,57],[50,47,58],[55,48,57],[60,49,59],[59,42,51],[93,62,61],[147,111,99],[173,149,126],[176,160,135],[180,165,143],[184,169,148],[187,172,151],[189,174,153],[189,174,153],[188,174,155],[186,174,154],[184,172,152],[186,172,153],[187,172,154],[184,169,153],[175,160,145],[159,143,132],[138,121,111],[131,114,104],[142,122,111],[155,132,120],[158,136,121],[156,134,117],[163,134,116],[171,144,122],[166,134,113],[161,124,105],[156,120,102],[136,107,97],[68,49,54],[45,34,46],[40,32,44],[35,31,43],[38,35,40],[56,41,51],[89,71,61],[178,167,129],[191,185,148],[189,183,151],[186,178,145],[184,171,135],[179,160,119],[152,126,85],[175,158,113],[189,185,137],[191,190,145],[194,192,154],[194,191,156],[190,187,151],[186,184,145],[186,182,144],[182,177,139],[179,171,133],[176,165,124],[168,156,111],[159,129,92],[138,104,65],[164,141,97],[170,159,116],[175,166,127],[174,160,120],[167,145,101],[119,90,64],[134,110,69],[174,156,101],[180,165,125],[117,101,80],[141,122,97],[170,146,104],[156,118,84],[124,79,55],[163,132,82],[166,145,86],[171,151,99],[170,153,102],[173,158,110],[170,156,110],[172,155,112],[165,150,105],[162,141,100],[153,125,84],[147,111,75],[133,88,70],[108,58,61],[105,53,65],[105,51,64],[104,50,67],[106,52,69],[101,51,66],[100,51,65],[104,51,67],[108,48,66],[108,47,67],[133,106,76],[98,71,49],[149,132,88],[173,161,109],[170,159,102],[164,147,96],[153,127,89],[130,101,64],[157,142,91],[174,165,109],[175,161,108],[169,147,99],[153,124,85],[129,96,61],[151,128,84],[180,170,116],[181,176,126],[178,170,124],[174,163,118],[170,158,112],[167,152,107],[159,138,97],[155,128,89],[153,123,86],[143,111,76],[84,63,49],[122,91,68],[160,135,97],[131,111,80],[174,161,118],[174,158,113],[167,142,102],[163,128,92],[134,101,66],[168,147,107],[177,162,121],[166,145,115],[128,113,92],[73,60,60],[61,51,58],[56,46,55],[58,48,59],[54,48,59],[49,47,58],[49,49,61],[48,46,60],[49,44,58],[53,45,55],[59,49,57],[59,47,57],[64,47,57],[108,80,78],[152,126,109],[174,153,129],[178,161,138],[180,164,141],[183,167,145],[186,169,150],[188,171,153],[189,173,156],[188,171,154],[184,171,152],[182,170,150],[182,168,146],[176,158,140],[156,135,120],[143,122,108],[144,122,110],[151,129,118],[162,144,133],[171,153,138],[175,156,136],[173,151,130],[166,144,123],[155,131,109],[162,136,113],[168,138,113],[163,131,104],[163,131,106],[150,118,102],[87,64,67],[47,35,50],[41,32,43],[37,30,41],[40,32,42],[54,40,54],[73,57,49],[171,157,124],[189,180,146],[187,182,151],[188,180,147],[184,170,135],[180,160,120],[152,125,84],[174,159,115],[187,186,140],[194,191,149],[195,193,154],[194,192,154],[191,188,152],[188,186,148],[186,183,145],[181,176,139],[180,172,134],[176,164,123],[171,156,112],[157,128,91],[139,105,67],[164,142,100],[172,160,119],[177,166,131],[176,160,119],[169,143,105],[123,91,65],[138,112,69],[174,156,101],[179,165,120],[116,99,79],[144,125,89],[171,146,101],[156,115,83],[125,78,56],[166,134,81],[167,145,91],[171,150,100],[169,152,102],[174,160,111],[171,158,112],[171,155,112],[167,149,107],[162,140,100],[155,128,84],[151,114,76],[138,90,73],[112,57,64],[109,52,68],[104,51,65],[98,51,65],[101,51,66],[100,51,66],[98,49,63],[102,49,65],[105,48,66],[105,46,66],[134,108,75],[102,76,53],[144,126,83],[173,160,108],[171,160,103],[163,150,98],[156,131,91],[136,105,68],[155,136,87],[175,164,110],[175,162,109],[170,150,102],[155,126,86],[133,100,65],[150,127,83],[180,169,114],[181,177,125],[178,171,125],[174,163,117],[164,152,107],[168,153,109],[162,141,100],[157,129,90],[153,124,84],[148,115,79],[88,67,51],[119,88,65],[164,138,100],[131,110,78],[174,160,118],[174,158,114],[168,143,104],[162,129,92],[134,101,67],[167,145,105],[178,163,122],[164,144,113],[116,101,83],[69,56,58],[59,49,57],[56,46,54],[56,47,57],[54,47,58],[49,46,58],[51,49,62],[47,44,58],[50,43,56],[51,43,54],[61,50,60],[55,42,54],[63,46,59],[91,68,75],[125,102,95],[157,134,118],[174,151,134],[179,160,138],[181,163,140],[184,166,146],[185,168,150],[188,171,153],[186,169,151],[182,168,148],[180,167,146],[176,160,139],[163,145,126],[152,133,116],[158,139,123],[177,159,144],[187,171,157],[190,174,158],[185,170,151],[181,165,142],[177,161,137],[176,159,136],[177,157,133],[175,153,127],[170,143,118],[168,138,111],[170,140,113],[157,127,108],[101,77,77],[49,37,49],[41,31,43],[37,29,42],[41,33,43],[52,40,54],[65,50,44],[159,145,114],[188,179,145],[188,182,151],[188,180,147],[185,172,136],[181,161,119],[151,122,82],[176,159,116],[189,186,142],[196,191,152],[196,194,155],[195,192,156],[191,188,153],[189,186,150],[187,183,146],[180,175,139],[180,172,136],[176,165,125],[171,157,114],[157,128,90],[141,108,67],[165,143,100],[171,160,120],[177,166,132],[176,160,120],[170,144,106],[123,90,65],[140,114,71],[175,157,103],[178,164,121],[114,97,79],[148,129,93],[172,146,102],[156,116,82],[127,80,58],[166,136,81],[167,145,91],[173,152,102],[170,153,103],[174,160,113],[169,156,111],[173,158,115],[168,151,109],[163,141,101],[157,129,86],[151,114,76],[141,92,75],[114,57,64],[109,52,68],[103,51,64],[99,51,65],[101,53,67],[99,51,65],[97,49,63],[101,50,65],[104,50,66],[105,48,67],[138,112,76],[104,78,55],[139,121,80],[173,161,109],[172,162,105],[164,152,100],[157,135,94],[140,109,70],[154,131,84],[176,164,111],[174,162,110],[170,152,102],[158,130,90],[136,103,67],[150,124,80],[181,170,114],[181,177,124],[180,173,127],[176,167,120],[166,154,108],[169,155,110],[164,143,102],[158,131,91],[155,125,86],[149,116,80],[95,74,57],[116,86,61],[165,139,100],[131,108,77],[175,161,119],[175,159,115],[168,144,104],[159,128,89],[137,105,69],[163,141,100],[179,165,122],[162,145,113],[112,97,82],[67,54,58],[61,51,60],[54,45,53],[56,47,56],[53,47,57],[52,49,59],[53,50,63],[50,44,59],[51,43,56],[51,43,55],[60,49,60],[55,38,49],[60,40,51],[72,48,56],[83,59,59],[101,76,66],[132,104,90],[163,140,118],[178,157,133],[184,165,142],[183,166,146],[184,167,147],[182,166,145],[180,164,143],[178,161,139],[174,157,134],[172,154,132],[176,159,138],[186,170,151],[182,168,150],[190,178,161],[191,178,154],[186,173,146],[182,167,141],[179,163,135],[177,161,133],[177,157,132],[177,157,131],[172,149,122],[172,144,117],[174,147,120],[167,137,116],[117,92,86],[56,42,51],[43,32,44],[39,31,44],[40,32,42],[51,39,53],[61,48,46],[144,131,103],[188,178,144],[188,182,151],[188,180,147],[185,171,135],[181,161,119],[149,120,81],[177,159,117],[188,185,143],[195,189,152],[195,195,157],[193,192,157],[190,189,156],[190,189,154],[186,184,148],[181,177,142],[179,172,137],[175,165,127],[171,157,116],[157,128,89],[143,109,68],[165,142,99],[172,160,122],[178,167,136],[175,160,121],[171,145,107],[120,89,63],[141,117,72],[175,157,105],[179,164,124],[113,95,78],[151,132,96],[172,147,101],[157,117,83],[128,83,59],[166,136,80],[169,148,92],[174,153,103],[170,153,105],[173,159,112],[171,158,114],[173,158,116],[170,152,110],[167,146,105],[160,133,89],[151,114,76],[144,94,77],[117,58,64],[113,54,70],[108,52,66],[102,52,65],[101,51,66],[100,50,65],[99,50,65],[101,48,64],[105,50,66],[107,50,68],[140,115,76],[108,81,58],[134,116,76],[174,162,111],[174,162,107],[166,153,102],[159,139,95],[143,114,74],[151,129,82],[176,163,112],[172,161,109],[169,153,103],[160,134,92],[138,105,68],[149,122,77],[180,168,112],[178,174,121],[179,175,126],[177,168,121],[168,156,111],[168,154,109],[163,143,101],[159,131,92],[158,129,88],[151,119,81],[99,79,61],[112,82,57],[165,139,99],[133,109,78],[176,161,119],[174,159,115],[168,145,105],[162,133,94],[140,108,72],[164,141,100],[179,165,122],[161,145,113],[105,90,78],[65,53,59],[57,48,56],[53,47,51],[55,48,56],[52,47,55],[50,47,57],[55,50,62],[52,44,59],[49,44,56],[51,45,57],[58,47,56],[63,42,48],[92,62,64],[124,94,89],[139,111,104],[139,111,99],[143,115,99],[157,131,108],[170,147,123],[181,160,137],[181,164,141],[185,169,147],[182,168,145],[182,165,142],[177,157,134],[176,156,132],[181,164,139],[187,172,148],[188,173,151],[184,170,149],[189,175,156],[189,174,154],[179,161,143],[176,154,136],[175,151,130],[179,153,129],[179,152,128],[173,152,125],[170,150,123],[172,147,121],[174,149,123],[171,142,117],[132,106,95],[63,47,54],[45,33,45],[40,31,44],[41,33,42],[50,40,54],[58,46,48],[127,114,89],[188,179,145],[188,182,152],[188,181,147],[186,172,137],[180,162,120],[145,119,79],[175,161,118],[189,188,147],[195,191,155],[193,193,157],[192,192,159],[190,189,158],[190,190,156],[185,183,150],[181,177,144],[180,173,140],[176,167,130],[171,158,117],[157,128,89],[143,110,67],[166,145,99],[174,161,124],[178,168,139],[175,161,123],[169,145,107],[119,88,61],[142,118,72],[175,157,105],[179,164,123],[113,96,77],[156,137,98],[171,147,99],[156,117,81],[129,85,60],[168,139,82],[169,149,92],[173,153,103],[171,154,106],[173,159,113],[174,161,117],[174,159,118],[169,151,109],[167,146,105],[163,135,91],[152,114,77],[145,95,78],[119,59,65],[114,53,69],[109,53,67],[104,52,66],[103,50,66],[103,50,66],[103,50,66],[107,51,68],[110,50,68],[109,49,67],[142,116,77],[113,87,61],[127,109,70],[174,162,110],[174,162,109],[167,154,104],[161,141,97],[148,120,80],[148,125,81],[177,164,114],[173,162,111],[172,157,110],[162,138,96],[141,108,70],[146,119,73],[179,170,113],[178,175,120],[180,175,126],[178,169,122],[171,159,112],[170,156,110],[164,144,102],[159,132,92],[158,128,86],[151,118,79],[106,81,63],[107,78,52],[167,140,101],[134,111,80],[175,160,119],[175,163,118],[170,149,107],[163,136,94],[143,111,73],[159,136,94],[179,165,121],[159,144,112],[97,83,72],[64,52,58],[55,47,55],[54,47,52],[55,47,55],[52,46,54],[52,47,56],[56,49,61],[53,45,59],[49,44,57],[52,48,56],[55,44,50],[75,50,51],[119,84,76],[162,129,111],[175,148,131],[173,148,131],[173,148,128],[172,146,122],[172,147,122],[178,156,132],[184,166,142],[186,171,148],[185,171,148],[182,163,142],[172,150,128],[176,154,130],[183,164,137],[184,167,140],[180,160,139],[167,147,133],[132,114,103],[99,76,77],[89,63,62],[90,60,55],[104,69,60],[135,99,84],[152,121,98],[163,139,115],[174,154,127],[176,154,126],[174,151,124],[173,145,118],[149,120,107],[73,54,58],[46,35,47],[44,33,46],[44,34,44],[51,42,55],[58,46,53],[112,98,77],[188,178,143],[188,182,151],[189,182,150],[186,174,138],[180,165,121],[146,124,82],[179,168,127],[189,190,151],[196,193,160],[196,197,163],[195,195,163],[194,193,163],[192,191,161],[184,183,151],[183,180,149],[181,176,145],[178,169,135],[171,159,122],[158,130,93],[145,113,69],[169,149,104],[173,162,126],[178,167,137],[175,160,122],[169,145,106],[119,88,63],[144,121,73],[176,158,107],[179,163,124],[111,94,73],[157,137,100],[172,148,98],[157,118,83],[130,86,60],[169,141,84],[171,152,94],[175,156,105],[171,154,106],[173,159,113],[175,161,117],[177,161,121],[168,151,109],[166,146,103],[162,136,92],[153,116,78],[144,95,76],[121,60,66],[115,54,69],[109,53,66],[106,52,66],[107,51,68],[107,52,69],[106,50,68],[109,50,69],[112,50,69],[111,50,69],[146,120,79],[117,92,61],[125,106,67],[174,162,106],[175,163,113],[169,157,108],[163,143,98],[150,121,80],[147,122,80],[174,161,114],[170,159,113],[166,150,109],[158,132,94],[140,107,68],[145,119,73],[177,171,118],[181,179,126],[179,175,127],[178,170,123],[171,160,115],[169,156,111],[165,146,103],[160,135,94],[157,129,85],[153,121,82],[117,87,68],[103,76,51],[166,141,101],[133,112,82],[175,161,123],[172,164,118],[170,152,108],[165,136,94],[144,111,73],[155,132,90],[177,165,120],[158,144,112],[90,78,67],[62,51,56],[58,48,56],[56,46,53],[55,44,55],[52,45,53],[55,48,56],[56,49,59],[53,45,59],[52,41,57],[56,46,55],[55,41,48],[77,50,52],[120,87,78],[161,133,116],[174,150,130],[174,151,129],[173,146,126],[174,145,123],[175,147,122],[177,153,128],[184,167,142],[189,177,155],[186,173,152],[183,165,146],[176,154,134],[174,151,127],[179,158,130],[177,152,129],[148,119,106],[108,82,79],[77,57,59],[84,57,65],[119,90,91],[142,112,102],[146,115,102],[147,114,100],[164,135,115],[177,155,132],[181,163,137],[180,159,130],[173,152,123],[177,150,121],[162,130,114],[89,66,71],[50,41,51],[46,35,47],[47,35,48],[49,43,52],[57,45,60],[100,84,68],[186,175,139],[188,182,149],[189,181,152],[186,174,138],[181,165,120],[153,130,89],[187,176,136],[194,193,154],[200,194,160],[198,197,163],[195,193,160],[197,194,163],[196,192,162],[183,179,148],[186,181,150],[184,178,148],[182,172,139],[177,161,127],[166,135,104],[147,115,73],[166,148,106],[173,164,129],[179,169,137],[176,160,122],[168,146,103],[117,86,65],[147,124,76],[176,157,108],[179,163,128],[111,94,71],[160,140,106],[173,148,99],[157,117,84],[133,88,61],[172,143,87],[172,152,96],[175,157,105],[171,157,107],[173,160,114],[176,161,119],[177,160,121],[173,155,115],[164,145,103],[162,137,96],[154,117,80],[143,95,72],[119,60,64],[116,54,69],[109,53,65],[110,51,66],[110,51,69],[109,53,70],[105,51,68],[108,50,68],[111,50,69],[108,49,68],[146,121,79],[121,96,67],[120,100,63],[173,161,105],[174,163,112],[170,158,108],[165,146,99],[154,125,82],[146,120,77],[179,163,119],[179,166,123],[174,157,116],[166,137,99],[151,115,77],[154,130,88],[182,177,128],[185,184,136],[186,182,141],[183,177,138],[177,169,129],[174,163,121],[172,157,114],[166,145,103],[161,139,96],[156,130,90],[124,97,78],[99,74,51],[166,142,102],[137,116,85],[176,162,125],[173,164,120],[169,151,108],[167,138,95],[147,114,76],[152,129,88],[179,167,124],[157,142,113],[80,67,61],[61,50,57],[58,48,55],[55,46,51],[54,44,52],[55,45,54],[55,48,55],[55,48,57],[53,46,59],[54,42,57],[56,45,54],[53,40,49],[70,46,54],[97,67,67],[111,85,81],[118,95,88],[129,102,93],[152,119,108],[166,132,114],[169,138,116],[174,148,125],[183,166,143],[190,180,159],[189,179,160],[187,171,153],[179,160,140],[171,150,127],[177,155,133],[164,138,121],[140,114,101],[171,148,139],[150,131,124],[166,145,134],[181,160,143],[184,163,141],[178,156,136],[181,159,140],[187,168,149],[186,170,150],[184,167,145],[180,160,134],[175,154,128],[177,151,123],[167,135,118],[99,76,79],[56,46,57],[46,37,49],[46,36,49],[46,42,52],[57,47,62],[96,80,66],[185,172,138],[191,182,148],[190,180,151],[187,173,138],[181,162,116],[153,128,83],[178,162,118],[178,172,127],[184,171,131],[182,175,136],[180,172,134],[183,174,137],[184,173,137],[176,165,129],[176,164,129],[173,160,125],[172,154,116],[167,145,106],[159,122,91],[147,112,69],[167,146,103],[173,163,128],[178,169,137],[175,160,122],[167,145,103],[115,86,64],[149,126,77],[176,159,109],[178,163,127],[111,95,70],[163,145,107],[173,149,96],[157,116,81],[134,91,60],[172,146,87],[173,153,96],[174,158,107],[172,159,112],[175,163,119],[174,161,120],[176,160,123],[171,153,119],[166,148,111],[164,140,102],[156,121,87],[147,103,80],[116,61,62],[114,55,66],[110,54,64],[113,52,65],[111,52,68],[109,53,68],[106,52,66],[108,51,67],[109,50,66],[111,51,68],[147,124,80],[122,96,68],[118,96,62],[173,162,106],[174,165,111],[171,159,107],[165,146,97],[156,127,82],[146,121,75],[178,161,115],[175,162,117],[170,156,113],[162,135,95],[150,113,74],[159,132,89],[177,169,119],[179,176,126],[180,174,130],[174,167,125],[171,161,120],[167,155,113],[164,148,105],[164,143,101],[163,140,99],[159,131,91],[133,106,85],[100,73,51],[167,141,103],[138,119,85],[178,163,126],[175,166,124],[171,153,110],[166,138,94],[149,116,77],[148,125,85],[181,168,127],[152,137,111],[77,63,61],[60,49,57],[55,46,51],[53,44,48],[53,41,51],[53,43,51],[54,46,54],[56,50,59],[51,46,58],[50,42,55],[48,43,50],[45,37,46],[50,33,40],[66,41,45],[74,51,62],[70,49,59],[70,46,51],[97,66,67],[145,112,98],[168,138,117],[179,154,132],[186,169,149],[193,183,164],[192,184,168],[189,176,159],[181,164,145],[179,161,141],[183,165,143],[178,158,136],[185,164,142],[186,164,143],[185,164,142],[184,158,136],[168,144,120],[167,145,122],[179,159,138],[189,172,152],[189,177,158],[187,174,155],[186,171,149],[184,165,141],[179,158,134],[176,150,122],[168,136,117],[110,85,86],[61,49,59],[47,39,50],[44,36,50],[46,43,53],[57,49,64],[85,71,58],[183,170,138],[189,181,146],[190,180,149],[186,172,136],[181,161,114],[150,122,77],[183,167,121],[188,183,137],[196,185,143],[194,186,148],[191,183,144],[190,180,141],[190,180,141],[184,172,135],[183,170,133],[179,165,127],[177,158,116],[173,150,106],[149,112,77],[146,110,66],[169,147,104],[175,163,130],[178,168,138],[176,163,126],[168,146,104],[112,84,61],[152,130,79],[176,160,110],[176,162,126],[110,95,69],[164,147,108],[174,152,97],[155,115,78],[138,97,65],[175,151,92],[174,156,100],[177,159,111],[175,160,115],[179,165,122],[177,162,122],[176,159,120],[170,154,118],[169,154,115],[169,149,109],[162,132,97],[153,112,88],[116,61,62],[114,54,66],[109,54,64],[113,53,66],[115,53,67],[112,53,66],[111,54,66],[110,52,65],[112,51,65],[115,52,66],[149,127,82],[129,103,75],[116,92,59],[173,161,105],[175,167,112],[173,161,108],[168,149,99],[159,130,83],[142,118,70],[179,164,112],[180,170,119],[173,163,116],[165,141,98],[152,114,74],[151,118,72],[173,160,105],[177,168,111],[175,164,110],[174,163,112],[170,156,109],[167,152,105],[161,140,94],[158,132,89],[155,124,84],[150,116,75],[126,94,71],[94,65,41],[165,138,98],[143,124,88],[178,163,127],[177,168,127],[172,154,112],[167,139,94],[153,120,81],[144,121,80],[179,166,127],[155,140,115],[79,65,63],[60,49,56],[54,45,51],[52,42,49],[53,41,51],[55,44,52],[54,46,54],[55,50,57],[49,46,56],[51,40,54],[49,41,49],[46,34,43],[60,38,44],[91,60,59],[114,83,84],[121,94,96],[141,115,114],[158,130,122],[161,134,117],[173,148,126],[185,164,142],[188,173,153],[195,186,169],[194,187,172],[190,178,162],[184,169,150],[185,169,150],[185,170,151],[180,165,144],[176,158,136],[172,150,127],[172,145,123],[172,145,124],[172,146,127],[181,161,142],[190,174,156],[192,179,161],[192,180,159],[189,175,155],[187,171,149],[184,167,142],[177,159,132],[174,149,117],[167,135,110],[114,88,84],[62,49,57],[46,38,51],[43,36,50],[42,41,51],[56,49,64],[84,70,58],[180,169,138],[186,180,144],[188,181,147],[185,173,135],[181,161,114],[157,130,85],[182,170,126],[189,190,146],[195,191,154],[195,192,158],[193,190,155],[190,185,149],[189,185,148],[183,176,141],[182,174,138],[178,169,131],[176,163,120],[174,156,111],[142,109,72],[148,115,69],[169,148,105],[175,163,130],[177,167,138],[175,162,126],[168,148,106],[111,83,60],[151,130,78],[175,160,112],[175,161,128],[109,94,71],[166,149,112],[171,149,95],[152,111,76],[143,105,73],[170,147,91],[167,149,96],[171,150,103],[167,149,104],[168,151,107],[166,148,105],[162,142,100],[155,132,89],[148,125,81],[151,124,83],[152,115,80],[142,95,75],[118,61,65],[112,52,67],[106,52,64],[110,53,68],[116,51,66],[119,54,67],[116,55,67],[116,55,67],[116,52,65],[118,53,66],[149,127,80],[134,108,74],[111,88,57],[171,161,105],[174,169,115],[172,163,111],[170,151,103],[160,133,87],[141,113,68],[178,160,109],[182,172,120],[177,168,119],[168,145,100],[153,116,75],[143,111,67],[179,165,110],[180,171,112],[180,172,115],[178,168,114],[174,160,108],[172,156,106],[169,147,100],[165,141,95],[162,133,88],[158,125,80],[134,103,75],[90,59,43],[165,137,98],[144,126,90],[175,164,126],[177,167,126],[173,155,112],[166,141,98],[153,122,80],[143,117,81],[180,166,124],[158,143,120],[75,61,59],[60,49,55],[52,45,49],[51,43,49],[53,42,51],[53,45,52],[51,44,52],[52,45,54],[48,43,53],[51,39,51],[47,38,47],[55,37,45],[81,46,49],[124,82,77],[164,122,109],[175,133,120],[173,134,120],[169,133,118],[165,140,120],[174,155,132],[184,168,144],[188,176,155],[195,187,169],[194,187,172],[190,180,163],[186,173,155],[184,171,152],[186,173,156],[188,175,160],[187,174,157],[187,172,154],[190,170,152],[188,170,153],[190,174,157],[193,178,163],[194,182,167],[194,183,168],[194,182,163],[192,178,159],[190,173,153],[187,167,146],[180,161,135],[175,148,119],[164,129,110],[110,82,79],[66,51,55],[47,38,49],[43,38,52],[43,39,52],[55,47,58],[76,63,58],[175,163,129],[188,180,142],[189,180,146],[186,175,136],[181,163,116],[147,125,84],[180,169,129],[189,188,147],[195,192,156],[198,194,162],[194,191,158],[191,187,155],[192,187,154],[183,176,143],[183,177,143],[179,172,135],[176,164,123],[176,158,115],[141,105,72],[152,119,74],[169,150,106],[176,166,131],[177,167,137],[176,162,129],[169,146,107],[111,82,59],[153,132,79],[177,162,113],[175,160,130],[109,94,71],[168,151,114],[171,148,100],[151,109,76],[146,111,77],[171,154,97],[171,151,101],[171,153,103],[170,152,103],[173,156,108],[169,152,106],[169,151,105],[169,149,100],[164,140,92],[159,128,80],[153,111,74],[145,91,76],[119,58,65],[115,53,67],[115,54,65],[114,53,66],[119,54,68],[121,54,68],[120,53,69],[118,54,69],[115,53,66],[118,54,65],[151,128,81],[137,110,75],[112,87,57],[173,160,104],[174,168,115],[173,165,113],[170,153,105],[161,136,90],[143,114,69],[177,157,107],[184,173,122],[178,170,121],[167,146,100],[151,115,73],[137,106,62],[179,165,110],[182,173,115],[180,173,117],[180,172,119],[174,163,112],[173,159,109],[170,151,104],[163,141,96],[160,136,89],[158,129,82],[134,106,76],[87,58,43],[161,135,95],[146,129,93],[173,163,124],[177,166,127],[174,156,114],[167,143,101],[155,125,82],[139,113,80],[180,166,123],[162,148,124],[73,58,56],[61,49,55],[53,44,48],[52,43,48],[50,40,48],[51,43,50],[49,41,49],[49,42,52],[48,41,52],[48,37,47],[46,37,45],[62,39,46],[94,53,55],[116,69,63],[141,92,81],[151,105,91],[156,116,100],[163,129,114],[175,152,135],[185,168,147],[186,173,151],[190,179,160],[195,186,169],[196,188,173],[193,181,166],[188,175,159],[183,170,153],[186,174,158],[190,180,165],[192,183,167],[195,183,168],[196,183,167],[194,182,166],[197,186,169],[199,189,174],[199,191,175],[197,188,172],[196,184,167],[194,179,161],[191,174,155],[189,169,150],[182,162,139],[176,150,122],[160,126,108],[106,77,75],[69,53,57],[48,39,51],[44,40,54],[44,40,55],[52,43,55],[69,56,56],[166,154,119],[190,181,142],[190,180,145],[187,175,135],[182,164,117],[140,119,79],[177,166,127],[192,190,148],[196,193,158],[198,194,161],[194,192,159],[191,189,156],[193,188,156],[183,177,144],[183,177,143],[181,173,137],[179,166,127],[177,158,116],[139,103,70],[154,122,78],[171,153,109],[177,167,132],[178,168,137],[176,161,129],[170,146,108],[111,81,59],[156,135,83],[177,161,111],[174,158,128],[110,95,70],[169,152,115],[172,149,102],[151,107,73],[142,105,68],[172,154,95],[171,150,98],[171,155,103],[172,154,104],[176,159,110],[173,157,110],[175,158,112],[170,152,105],[166,144,96],[163,132,82],[155,112,73],[144,90,73],[119,58,65],[116,54,67],[118,55,65],[117,54,66],[119,54,68],[120,53,68],[119,51,67],[118,52,69],[117,53,69],[121,53,69],[156,132,85],[141,113,79],[111,84,55],[171,155,101],[177,168,116],[173,165,114],[170,154,105],[162,138,92],[145,114,70],[175,154,105],[184,173,122],[176,169,120],[171,151,105],[155,121,79],[137,105,61],[178,164,110],[184,175,117],[182,175,121],[180,172,122],[177,167,117],[175,161,114],[171,154,108],[166,146,102],[162,140,96],[157,131,83],[138,113,80],[85,58,41],[161,135,94],[150,130,93],[175,162,124],[178,167,128],[174,155,115],[168,144,101],[157,127,83],[134,107,76],[180,166,124],[165,151,127],[79,63,62],[60,47,54],[55,45,49],[54,45,50],[50,40,49],[50,40,48],[49,40,49],[47,40,50],[46,38,49],[45,34,45],[49,36,44],[71,42,46],[119,77,75],[142,100,91],[162,124,111],[172,138,123],[174,149,131],[180,160,144],[189,172,156],[188,173,154],[187,175,155],[192,183,164],[195,188,172],[196,187,173],[195,183,169],[192,177,162],[189,175,159],[189,178,163],[189,180,167],[192,184,170],[195,187,173],[199,191,177],[199,192,176],[199,193,177],[200,194,178],[199,193,177],[198,190,174],[197,185,169],[196,181,165],[192,175,157],[188,168,149],[184,163,141],[181,155,128],[159,127,109],[103,76,74],[69,53,58],[48,40,51],[42,38,54],[44,40,57],[50,42,56],[66,52,54],[160,148,114],[190,181,144],[190,180,145],[187,175,134],[182,165,116],[141,120,79],[178,167,128],[192,190,150],[196,192,159],[197,196,162],[193,194,160],[190,189,156],[192,188,155],[183,177,144],[183,177,143],[182,173,137],[179,166,126],[177,157,115],[138,105,71],[158,126,84],[172,154,113],[178,168,134],[180,170,138],[176,162,129],[169,145,107],[110,80,58],[157,136,85],[179,162,112],[173,157,127],[111,95,71],[172,156,117],[173,150,101],[153,109,73],[140,99,62],[170,149,88],[173,150,95],[174,158,104],[173,156,106],[175,159,110],[175,159,113],[176,161,116],[170,151,108],[168,145,99],[164,133,84],[154,111,71],[141,87,69],[119,57,65],[116,53,66],[118,54,65],[119,53,66],[119,53,66],[122,53,68],[123,52,68],[120,51,68],[120,52,68],[124,53,68],[155,134,86],[142,117,81],[111,85,55],[169,153,98],[178,168,116],[176,166,115],[171,156,107],[164,141,95],[146,114,71],[171,149,100],[185,174,123],[179,172,122],[172,154,108],[157,125,82],[138,107,62],[175,161,107],[185,176,119],[184,177,125],[182,175,126],[178,169,121],[175,162,116],[170,154,110],[166,148,105],[164,141,99],[161,135,87],[139,114,80],[83,57,39],[161,134,93],[154,132,95],[175,161,123],[179,167,128],[174,156,117],[169,146,102],[159,128,86],[133,106,76],[179,165,123],[167,153,127],[84,67,66],[59,45,52],[54,44,49],[52,42,47],[49,37,46],[50,40,48],[47,37,46],[49,39,49],[45,37,48],[43,33,43],[51,34,41],[80,47,48],[138,99,93],[164,133,120],[177,155,140],[180,163,145],[182,170,151],[186,174,158],[189,176,160],[186,174,156],[190,180,159],[194,186,166],[196,189,170],[196,187,169],[197,183,167],[195,179,164],[192,177,161],[189,178,161],[190,180,164],[193,182,167],[196,186,171],[198,191,176],[200,194,180],[200,194,180],[200,194,179],[201,194,178],[200,191,175],[200,188,172],[198,183,167],[194,176,159],[190,169,152],[184,163,141],[179,153,127],[156,126,108],[108,82,81],[82,64,70],[49,42,51],[40,38,51],[43,40,55],[49,43,56],[67,54,55],[152,140,108],[188,178,141],[191,181,145],[188,176,134],[183,166,116],[144,123,81],[180,169,130],[192,189,150],[196,192,160],[198,195,162],[194,193,159],[191,189,156],[192,186,154],[183,177,144],[184,178,144],[182,173,138],[179,166,126],[177,158,116],[139,107,72],[160,130,89],[175,157,118],[179,169,137],[179,169,136],[178,164,129],[171,147,108],[108,78,56],[161,140,90],[181,165,115],[171,155,124],[113,98,72],[175,158,119],[172,149,100],[151,108,74],[137,96,60],[169,146,86],[171,149,93],[172,157,102],[174,158,109],[176,160,113],[175,161,115],[175,161,116],[173,154,109],[170,147,102],[165,134,86],[153,111,72],[141,85,71],[119,56,64],[118,54,68],[119,54,64],[119,53,66],[120,53,67],[123,53,67],[125,53,68],[124,52,69],[123,53,68],[124,53,66],[155,137,89],[143,119,82],[108,84,54],[164,151,96],[179,169,117],[177,167,116],[170,157,107],[164,142,95],[148,117,73],[167,145,96],[185,174,123],[178,172,122],[174,157,110],[160,129,85],[140,109,63],[171,157,103],[183,175,119],[184,176,127],[181,176,127],[178,171,123],[174,163,118],[172,157,114],[166,148,106],[165,141,100],[163,135,89],[146,119,83],[87,59,41],[159,131,91],[157,134,95],[174,160,122],[180,167,129],[174,156,117],[169,147,103],[162,131,89],[130,102,73],[178,163,122],[166,153,125],[86,70,68],[57,44,51],[53,43,48],[54,44,49],[49,38,46],[50,39,47],[47,36,45],[48,38,49],[42,33,44],[44,32,43],[53,34,41],[85,51,51],[149,115,104],[170,149,132],[182,168,151],[186,174,155],[191,177,160],[192,177,162],[190,178,161],[191,181,162],[194,185,163],[196,189,167],[196,190,168],[196,187,166],[197,184,165],[195,180,162],[191,176,157],[189,175,156],[189,176,158],[193,179,161],[195,183,167],[197,190,173],[199,192,178],[199,192,178],[199,191,177],[202,193,178],[200,190,174],[198,185,169],[196,181,165],[193,175,158],[188,168,151],[183,162,141],[176,151,126],[154,126,109],[101,77,77],[75,58,65],[49,43,49],[41,38,49],[41,40,53],[49,44,56],[63,50,53],[150,136,105],[187,176,140],[190,181,144],[188,177,135],[183,166,115],[144,124,80],[180,169,130],[193,190,151],[197,192,160],[198,194,162],[195,191,159],[191,187,155],[192,185,154],[183,175,142],[184,178,143],[180,172,136],[178,165,125],[178,159,117],[136,105,69],[160,131,89],[175,157,120],[180,169,138],[179,169,136],[176,163,127],[169,146,108],[107,78,56],[163,141,92],[181,165,116],[169,153,121],[115,100,73],[175,158,118],[172,149,101],[150,107,76],[137,97,62],[169,148,88],[171,151,96],[173,160,106],[176,160,111],[175,160,113],[174,160,115],[175,161,117],[172,154,107],[170,148,101],[165,134,87],[154,111,75],[138,83,71],[117,55,63],[119,54,67],[119,53,65],[120,54,67],[119,52,66],[123,53,67],[125,53,68],[125,52,69],[124,52,69],[122,52,68],[155,135,92],[145,121,78],[108,81,55],[161,145,94],[179,170,118],[176,167,116],[173,160,110],[166,144,97],[153,123,79],[162,140,90],[183,172,121],[180,172,122],[176,158,110],[164,131,86],[143,111,65],[170,154,99],[181,176,119],[183,178,128],[181,177,127],[179,172,123],[175,164,121],[172,158,117],[167,149,109],[165,144,99],[161,137,91],[148,122,80],[89,61,42],[155,130,91],[159,136,98],[174,160,122],[180,169,129],[173,157,115],[170,148,105],[164,132,89],[131,99,69],[177,162,120],[168,159,124],[93,77,71],[56,43,49],[51,44,48],[53,45,49],[50,39,47],[49,37,46],[45,34,44],[47,37,50],[41,30,45],[44,32,43],[53,35,45],[89,54,54],[156,121,108],[178,158,139],[187,173,154],[189,177,159],[194,178,162],[190,180,160],[191,182,158],[194,183,162],[196,184,167],[199,189,171],[199,192,172],[198,189,173],[197,186,169],[194,180,162],[191,175,155],[188,170,149],[186,166,145],[183,161,141],[191,172,152],[196,182,162],[199,186,166],[201,191,173],[199,190,175],[200,190,174],[200,187,169],[197,182,164],[195,178,162],[191,173,156],[185,167,147],[181,160,139],[174,146,123],[153,126,111],[68,52,53],[50,40,51],[48,41,52],[42,37,50],[41,41,54],[48,46,58],[64,50,58],[148,132,100],[188,175,140],[188,181,144],[186,175,136],[183,164,112],[144,125,79],[183,170,129],[193,188,149],[196,194,160],[195,195,161],[194,192,159],[192,187,155],[191,185,153],[181,173,139],[186,177,143],[181,173,136],[178,166,125],[176,158,116],[137,102,67],[160,135,88],[176,159,121],[183,170,141],[180,170,137],[175,161,129],[167,146,107],[105,77,55],[165,143,94],[181,166,118],[167,150,120],[117,102,76],[175,159,119],[175,147,102],[153,105,75],[140,97,62],[168,148,87],[174,153,100],[173,159,107],[175,160,113],[175,161,116],[175,160,118],[175,162,120],[172,155,110],[170,149,101],[165,135,86],[154,111,75],[134,81,69],[112,53,61],[118,55,66],[121,53,67],[120,52,64],[121,51,64],[122,51,65],[123,52,67],[123,52,68],[123,52,68],[121,51,69],[155,134,91],[148,122,79],[111,82,56],[157,140,90],[179,169,119],[177,168,116],[173,160,110],[166,145,98],[152,122,78],[157,133,85],[181,169,118],[178,171,120],[177,159,111],[167,134,89],[146,112,66],[170,152,98],[184,176,121],[184,178,128],[183,176,128],[179,171,124],[175,163,120],[173,158,117],[168,151,109],[164,144,99],[160,137,91],[149,122,80],[93,65,45],[153,128,90],[161,139,100],[175,160,124],[180,168,131],[173,158,117],[170,149,107],[166,135,92],[128,96,66],[174,159,116],[172,162,128],[98,82,75],[56,44,49],[52,44,49],[54,43,50],[50,38,47],[48,36,45],[46,35,45],[44,34,44],[40,30,43],[44,31,44],[54,35,47],[91,56,58],[159,128,114],[181,165,148],[189,175,159],[186,179,161],[193,177,159],[196,176,154],[190,167,144],[192,174,152],[193,183,164],[201,192,176],[206,193,180],[204,191,180],[202,188,175],[197,181,164],[187,171,152],[188,173,151],[188,168,146],[180,149,132],[177,146,127],[182,159,136],[191,172,148],[195,179,157],[198,185,164],[197,185,166],[195,182,163],[195,179,160],[191,174,156],[187,169,149],[182,163,139],[176,154,129],[171,142,118],[150,125,111],[60,45,51],[50,40,55],[46,41,55],[41,36,52],[41,40,55],[48,44,58],[65,49,58],[146,130,97],[190,177,141],[185,179,140],[187,176,135],[183,164,111],[142,124,78],[184,172,131],[194,189,150],[195,193,159],[197,197,163],[193,191,158],[192,187,155],[192,185,153],[182,173,140],[185,177,142],[182,173,137],[179,166,125],[177,159,117],[136,102,68],[161,135,90],[176,159,123],[182,170,141],[180,170,138],[176,162,130],[168,147,108],[103,75,53],[167,145,96],[180,166,118],[164,147,117],[119,104,78],[175,159,119],[174,147,101],[151,103,73],[140,97,62],[169,148,88],[173,152,100],[175,160,110],[175,159,113],[176,161,117],[175,160,119],[175,162,121],[173,156,111],[168,148,99],[166,136,86],[155,112,76],[137,82,71],[116,54,63],[120,54,66],[121,52,67],[121,52,65],[123,52,65],[122,50,64],[124,51,67],[125,52,69],[125,52,69],[124,51,70],[158,136,91],[151,124,80],[114,85,60],[152,134,86],[179,168,120],[179,169,118],[174,161,111],[168,146,99],[154,124,80],[155,130,82],[182,170,119],[180,172,122],[178,161,113],[167,136,91],[150,115,69],[167,148,97],[182,174,121],[184,177,127],[184,176,129],[179,171,124],[176,164,121],[173,159,117],[167,152,108],[164,145,100],[161,139,92],[154,127,85],[98,68,49],[155,130,91],[164,143,104],[171,155,119],[181,167,132],[173,159,119],[169,149,109],[165,135,92],[129,97,66],[173,156,114],[178,165,133],[103,86,79],[55,43,48],[52,43,48],[54,43,50],[49,37,47],[46,34,44],[47,35,45],[42,32,41],[41,31,40],[46,33,44],[58,36,47],[101,63,64],[164,132,118],[183,167,148],[190,175,159],[188,178,159],[194,172,152],[184,154,130],[176,149,123],[191,176,150],[193,187,164],[200,193,174],[205,193,176],[200,190,174],[198,184,168],[192,175,157],[184,164,144],[187,169,146],[186,166,144],[174,145,128],[181,153,133],[179,157,131],[178,154,126],[186,163,135],[192,171,143],[193,175,149],[191,175,151],[191,173,150],[187,167,146],[183,161,139],[179,156,130],[172,146,119],[168,137,113],[146,122,110],[56,44,51],[59,53,68],[46,42,57],[42,37,54],[43,42,57],[52,45,60],[67,49,58],[143,127,94],[190,178,141],[188,181,142],[186,175,134],[182,164,110],[141,124,78],[183,172,131],[192,188,149],[195,194,159],[195,195,159],[193,190,155],[192,186,152],[192,183,150],[182,173,138],[185,177,142],[182,173,136],[180,168,127],[177,159,117],[136,102,69],[163,139,93],[177,161,124],[183,172,143],[181,171,139],[178,162,130],[165,144,105],[102,75,52],[168,148,98],[181,168,121],[162,146,117],[121,108,80],[176,161,119],[174,148,100],[150,102,74],[141,98,64],[169,148,89],[172,151,100],[177,162,112],[178,162,117],[177,162,119],[175,160,120],[175,161,121],[173,156,112],[170,149,101],[167,137,85],[153,110,74],[137,80,71],[121,55,65],[123,53,67],[122,50,65],[122,52,65],[125,54,67],[123,51,65],[126,53,69],[125,52,69],[125,52,69],[124,51,68],[159,137,91],[153,125,81],[117,87,62],[147,128,81],[179,168,120],[178,168,117],[174,161,111],[168,147,100],[158,128,84],[153,128,80],[181,167,117],[179,172,121],[178,161,113],[169,139,93],[155,119,72],[164,144,93],[183,174,122],[184,176,126],[183,175,127],[180,170,125],[175,163,120],[173,160,116],[169,155,111],[166,149,103],[163,141,95],[156,130,88],[103,71,53],[155,129,90],[169,149,108],[174,157,122],[183,169,135],[175,161,124],[170,152,114],[169,140,97],[131,99,68],[169,151,110],[181,167,137],[105,88,80],[55,41,46],[51,42,47],[52,40,49],[49,36,48],[45,33,43],[47,35,44],[41,31,40],[41,31,39],[47,35,42],[61,38,45],[112,69,68],[167,130,113],[184,165,142],[190,171,150],[191,170,148],[185,153,132],[159,123,97],[176,154,127],[189,172,147],[196,180,155],[196,179,154],[199,181,154],[195,177,153],[193,170,147],[186,156,135],[180,142,125],[183,143,125],[182,146,129],[164,137,122],[183,161,144],[184,162,139],[183,155,129],[177,145,116],[183,152,121],[189,161,130],[187,162,132],[185,161,134],[182,156,133],[179,150,129],[174,145,122],[168,138,114],[169,138,115],[141,118,108],[52,44,50],[55,51,65],[44,42,56],[42,38,53],[44,42,55],[54,45,57],[69,50,57],[146,131,96],[191,179,141],[188,181,142],[187,176,134],[183,166,112],[143,127,81],[183,173,132],[193,189,150],[195,194,159],[196,193,158],[192,189,154],[191,184,151],[190,181,148],[184,175,141],[186,178,143],[183,174,138],[180,167,126],[178,160,117],[136,104,71],[164,140,95],[177,162,127],[183,172,145],[180,170,138],[177,161,130],[163,141,102],[100,74,51],[170,151,101],[181,168,121],[158,142,114],[124,111,83],[177,163,120],[173,148,99],[148,99,71],[142,99,66],[168,148,89],[174,153,102],[177,161,113],[177,162,117],[177,162,119],[175,160,121],[174,160,122],[171,154,111],[170,149,100],[167,137,84],[154,111,75],[137,78,71],[122,53,64],[124,52,66],[125,52,67],[124,53,66],[124,53,66],[122,51,65],[124,52,67],[124,53,69],[124,53,69],[125,52,69],[157,136,89],[153,125,81],[120,90,62],[139,119,78],[178,167,117],[178,170,118],[174,162,112],[170,149,102],[160,129,85],[149,123,75],[181,166,116],[178,170,121],[178,163,116],[171,144,98],[156,124,75],[162,139,89],[182,172,120],[182,175,124],[182,174,126],[182,172,128],[175,163,121],[173,160,116],[169,155,109],[165,148,102],[166,143,99],[157,131,88],[105,76,55],[153,131,92],[171,152,112],[170,153,118],[180,168,133],[175,161,124],[171,152,113],[170,141,97],[137,105,73],[169,150,108],[183,168,137],[112,96,85],[52,42,45],[51,41,46],[52,39,47],[49,36,47],[44,33,43],[44,35,44],[39,30,39],[42,31,39],[48,35,42],[62,37,42],[114,70,67],[164,123,105],[182,159,131],[183,159,133],[187,154,129],[170,130,106],[173,140,112],[187,168,142],[189,170,147],[182,156,132],[168,137,110],[186,155,125],[186,153,126],[183,142,120],[166,117,100],[142,88,76],[149,97,85],[169,127,112],[183,153,138],[186,163,147],[185,161,144],[184,153,129],[177,139,112],[173,131,100],[178,141,106],[179,148,112],[177,147,115],[174,143,118],[171,139,118],[168,136,115],[169,138,114],[168,139,118],[127,107,100],[50,42,49],[76,70,81],[46,43,56],[43,41,53],[46,44,55],[56,46,57],[69,51,57],[147,133,98],[191,180,141],[190,181,140],[189,177,134],[183,165,110],[142,125,79],[183,173,132],[192,189,150],[194,194,159],[197,194,159],[194,190,155],[191,185,150],[188,179,145],[186,176,142],[186,177,142],[183,175,137],[180,167,126],[178,160,118],[136,103,70],[165,141,97],[177,163,127],[183,172,144],[182,170,140],[179,162,129],[165,142,109],[101,74,52],[169,151,99],[182,168,125],[157,140,113],[128,115,87],[177,162,119],[174,147,99],[147,98,72],[144,101,68],[169,146,89],[174,155,104],[176,162,113],[177,162,118],[176,162,119],[176,161,120],[175,160,120],[172,154,110],[170,148,99],[167,137,85],[154,109,76],[134,75,69],[123,52,64],[124,53,66],[125,53,68],[124,53,66],[121,50,64],[122,51,67],[121,50,66],[123,52,68],[125,53,69],[126,52,69],[159,140,92],[153,127,82],[124,96,65],[135,114,77],[178,167,115],[178,170,118],[172,162,111],[169,150,102],[162,132,88],[147,121,73],[180,164,115],[179,171,123],[178,164,118],[170,148,101],[156,126,76],[162,138,87],[183,174,121],[181,176,124],[184,177,128],[180,173,128],[177,166,123],[174,161,118],[169,155,109],[166,147,103],[167,143,101],[160,133,89],[107,80,58],[149,129,92],[175,157,119],[173,156,120],[179,169,132],[175,161,123],[173,154,113],[170,141,96],[137,106,74],[166,148,106],[184,170,136],[126,110,97],[49,40,44],[52,41,46],[52,40,46],[49,36,47],[44,34,43],[40,34,43],[37,30,38],[43,30,40],[50,35,45],[62,37,42],[105,64,59],[159,116,95],[179,147,116],[182,149,120],[177,133,106],[161,121,92],[182,154,124],[188,171,145],[193,175,150],[193,169,143],[184,155,127],[182,150,121],[175,139,112],[160,117,94],[159,112,95],[177,133,117],[186,150,134],[187,158,141],[190,165,146],[187,163,145],[185,160,141],[177,148,127],[168,129,105],[169,123,95],[173,133,98],[168,134,96],[171,138,103],[167,135,108],[165,134,112],[169,139,115],[172,142,115],[168,139,118],[113,95,90],[64,57,66],[62,56,68],[45,42,54],[43,42,52],[47,44,55],[55,46,58],[67,51,57],[154,141,105],[191,181,141],[192,182,140],[188,176,132],[185,166,111],[141,124,78],[184,174,132],[192,189,150],[192,192,158],[197,194,159],[193,189,154],[191,185,149],[188,179,144],[187,177,143],[185,177,141],[183,173,136],[181,168,127],[178,159,119],[137,103,70],[166,143,98],[178,165,128],[184,173,146],[182,170,140],[179,162,127],[163,139,110],[101,75,53],[171,153,100],[182,168,125],[156,138,111],[131,116,87],[178,162,119],[174,145,99],[145,96,72],[146,104,71],[172,149,91],[172,155,104],[177,161,114],[176,162,117],[176,161,118],[175,160,119],[175,160,119],[171,154,109],[171,150,101],[165,134,84],[153,107,75],[135,75,70],[122,53,64],[123,53,64],[125,53,67],[125,52,67],[122,50,66],[123,51,68],[122,49,66],[122,50,66],[124,51,68],[126,49,66],[160,141,93],[152,128,82],[126,98,66],[127,106,69],[177,165,113],[179,169,118],[174,164,113],[169,151,103],[162,134,89],[146,119,71],[178,162,112],[180,172,124],[177,165,119],[171,149,103],[160,130,80],[158,134,85],[182,173,120],[182,176,125],[183,176,128],[182,174,129],[178,166,124],[175,162,119],[170,156,111],[168,149,105],[167,144,100],[160,133,87],[109,81,61],[139,119,83],[171,153,115],[168,151,115],[178,169,132],[175,162,124],[174,156,115],[173,145,101],[135,102,73],[164,145,103],[185,170,135],[127,112,98],[47,38,44],[51,40,47],[51,37,44],[47,34,44],[44,34,43],[38,32,42],[37,30,39],[45,32,42],[50,35,45],[59,37,44],[92,53,51],[144,98,79],[170,128,96],[176,129,98],[160,112,82],[171,132,102],[182,157,127],[188,171,145],[194,179,154],[196,181,157],[195,178,154],[192,173,149],[191,168,143],[185,161,136],[186,162,140],[186,166,145],[186,171,150],[185,171,149],[184,168,146],[187,167,144],[186,163,141],[180,152,134],[174,136,116],[161,116,91],[179,140,107],[179,147,111],[175,142,110],[171,141,113],[170,142,117],[172,146,120],[175,145,118],[165,136,116],[96,79,77],[47,43,56],[44,39,52],[47,42,56],[45,43,56],[47,44,56],[56,46,60],[65,49,55],[158,146,108],[188,179,137],[193,182,141],[189,176,132],[185,166,112],[141,123,79],[186,175,133],[192,189,149],[193,193,158],[195,195,159],[194,191,156],[191,185,149],[187,180,144],[186,177,143],[186,178,142],[183,174,136],[181,167,126],[180,159,119],[138,105,71],[167,144,100],[179,166,133],[183,172,148],[181,170,140],[179,162,127],[162,138,109],[102,76,54],[173,155,102],[182,168,124],[155,137,108],[136,121,91],[177,162,117],[174,144,98],[145,95,72],[146,104,70],[171,149,89],[171,154,103],[178,161,115],[176,162,118],[176,161,119],[173,158,117],[175,160,120],[171,155,109],[170,149,100],[165,132,83],[153,105,74],[135,74,69],[122,53,64],[124,53,64],[126,53,68],[128,53,68],[126,51,68],[126,52,69],[125,51,68],[124,50,67],[123,49,66],[124,49,64],[158,139,92],[153,131,85],[129,103,71],[124,101,65],[177,163,112],[178,168,117],[173,164,113],[168,152,104],[162,136,91],[146,117,70],[178,160,111],[179,169,121],[177,165,119],[171,151,104],[160,130,82],[157,133,84],[182,172,121],[182,177,127],[183,176,127],[182,175,128],[179,167,125],[175,162,120],[170,155,112],[168,149,104],[166,143,97],[159,132,85],[112,84,65],[135,114,81],[169,152,114],[164,147,111],[178,168,131],[175,162,123],[173,156,114],[171,144,101],[131,99,72],[162,142,102],[185,170,135],[134,121,105],[46,37,43],[51,39,47],[49,35,41],[45,32,42],[44,34,43],[37,31,41],[37,30,39],[45,33,42],[48,35,45],[51,36,44],[75,43,45],[120,72,60],[155,104,79],[161,108,78],[155,107,75],[172,134,104],[177,150,121],[184,166,143],[192,179,159],[194,185,166],[195,185,167],[198,184,167],[194,180,160],[192,178,158],[191,177,158],[193,180,161],[193,180,159],[193,176,154],[193,171,150],[193,167,146],[186,159,138],[176,143,133],[155,115,101],[150,107,85],[176,142,112],[185,159,124],[178,151,119],[177,150,120],[176,150,122],[175,149,122],[170,139,115],[155,126,110],[80,66,67],[58,55,69],[48,42,55],[44,39,53],[46,44,57],[48,44,57],[58,48,62],[68,51,57],[164,152,111],[189,179,137],[192,182,140],[189,176,133],[185,165,113],[144,125,81],[187,175,134],[193,189,148],[194,194,157],[195,195,159],[193,191,156],[190,185,149],[186,179,143],[186,179,144],[183,177,141],[184,175,137],[183,168,127],[181,159,120],[139,107,71],[168,146,104],[180,168,138],[183,172,151],[181,169,140],[179,163,128],[161,137,108],[103,77,55],[173,155,102],[183,168,123],[157,138,108],[139,124,92],[179,162,116],[175,144,97],[144,93,70],[147,107,71],[169,150,87],[173,156,106],[178,161,116],[176,161,118],[178,163,122],[174,159,119],[176,161,122],[171,156,110],[170,149,100],[166,134,85],[155,105,74],[134,71,67],[123,55,66],[126,54,66],[126,51,67],[130,52,68],[127,50,68],[127,52,69],[125,51,68],[122,50,66],[122,50,66],[124,50,65],[161,142,94],[154,132,86],[132,108,75],[118,94,59],[176,160,109],[178,168,117],[174,165,114],[169,154,105],[163,140,93],[144,116,69],[174,155,107],[179,170,122],[178,166,120],[172,152,105],[163,133,86],[155,131,82],[181,171,121],[183,178,128],[183,177,128],[181,174,127],[178,166,124],[176,163,121],[171,156,113],[169,151,106],[168,145,98],[160,134,85],[117,90,70],[130,109,77],[172,154,116],[168,151,116],[180,170,133],[177,164,126],[173,158,115],[172,145,102],[131,98,73],[158,137,99],[183,168,132],[137,125,107],[47,39,45],[49,38,47],[50,35,41],[47,33,42],[43,33,42],[35,29,39],[38,31,39],[46,34,43],[45,35,44],[43,34,42],[64,39,44],[101,55,50],[138,85,67],[157,107,80],[167,122,92],[172,135,106],[176,146,118],[191,164,142],[198,176,156],[199,181,160],[199,179,160],[199,175,157],[197,174,153],[199,175,155],[199,172,152],[194,164,145],[190,154,136],[185,142,126],[175,130,115],[162,118,105],[148,105,93],[115,76,71],[98,55,46],[151,108,90],[186,156,127],[184,164,130],[180,158,126],[180,157,125],[180,155,125],[177,150,123],[167,137,115],[141,114,103],[62,49,54],[87,83,98],[56,48,59],[48,40,56],[47,44,58],[51,47,61],[59,47,63],[69,52,57],[165,154,112],[186,177,133],[193,182,140],[191,178,135],[185,164,114],[144,124,81],[187,174,133],[194,190,148],[194,194,156],[195,196,159],[193,191,156],[191,186,149],[186,180,144],[185,180,144],[183,178,142],[184,175,137],[181,166,126],[179,157,117],[141,109,73],[171,150,108],[181,168,141],[182,173,152],[181,171,142],[179,163,128],[159,136,107],[106,80,58],[174,156,103],[184,168,123],[156,137,105],[145,129,96],[178,161,114],[174,143,96],[142,91,70],[148,109,72],[169,150,86],[174,155,106],[179,161,117],[177,162,119],[177,162,121],[176,161,121],[177,161,123],[173,158,112],[170,149,100],[168,134,86],[154,103,72],[133,69,65],[122,54,64],[126,54,66],[128,52,68],[130,51,67],[126,50,68],[125,52,69],[121,50,66],[120,51,66],[119,50,66],[124,50,67],[162,143,97],[155,132,88],[137,112,74],[113,88,58],[173,157,107],[176,168,117],[174,165,116],[169,154,106],[164,141,92],[146,116,70],[174,152,104],[181,169,120],[179,168,120],[172,154,109],[167,137,89],[155,130,81],[181,170,118],[182,178,129],[183,178,129],[182,176,129],[178,168,125],[175,162,120],[170,156,112],[168,151,106],[164,144,96],[161,133,91],[120,92,65],[127,105,76],[175,156,118],[166,153,120],[181,172,135],[178,165,128],[172,157,118],[171,145,102],[132,100,75],[153,132,99],[183,169,130],[144,133,115],[46,39,42],[49,38,44],[48,34,40],[46,35,44],[43,34,42],[37,30,37],[38,29,37],[46,34,43],[44,36,46],[42,31,39],[54,35,42],[89,49,49],[132,80,67],[163,121,95],[175,141,110],[176,142,113],[165,123,101],[146,99,87],[154,113,99],[175,143,119],[175,140,114],[178,135,116],[177,133,113],[177,129,112],[171,120,107],[170,119,109],[155,99,92],[159,103,95],[151,106,92],[177,142,126],[160,126,115],[122,80,80],[158,120,111],[180,151,128],[188,165,136],[185,164,133],[183,160,129],[180,160,128],[177,156,127],[173,146,119],[162,131,111],[120,95,91],[53,39,50],[56,47,61],[53,41,58],[45,40,55],[49,45,59],[53,48,60],[58,47,59],[66,52,53],[159,146,113],[187,174,129],[192,181,142],[191,178,132],[186,164,114],[142,123,79],[186,176,132],[194,190,148],[195,193,158],[196,194,159],[195,190,155],[192,185,149],[186,180,144],[186,180,144],[185,178,143],[182,173,133],[182,168,124],[178,158,119],[145,112,76],[174,152,116],[181,170,143],[183,174,152],[181,171,145],[179,164,134],[160,138,110],[107,82,56],[176,158,107],[185,167,126],[154,135,96],[151,135,99],[178,160,116],[173,142,95],[139,88,72],[151,115,73],[170,149,89],[175,156,103],[178,161,116],[177,162,119],[177,162,121],[177,162,122],[178,163,124],[171,156,111],[170,149,100],[165,132,85],[154,106,70],[130,69,70],[122,55,66],[126,54,66],[129,53,66],[128,52,65],[127,52,67],[124,53,67],[118,52,65],[115,51,65],[117,50,65],[121,50,64],[163,144,99],[156,134,89],[141,116,76],[110,85,56],[171,155,106],[177,169,118],[174,165,116],[170,155,107],[165,142,93],[150,120,73],[168,145,98],[180,167,118],[179,168,121],[173,157,111],[167,138,91],[153,129,79],[180,168,116],[181,176,127],[182,177,129],[183,176,129],[178,169,126],[177,164,122],[172,158,115],[169,152,107],[166,145,96],[163,133,91],[124,95,66],[125,103,74],[177,158,120],[164,152,120],[182,172,135],[178,165,128],[172,157,117],[172,147,103],[135,103,79],[146,125,92],[184,170,129],[152,140,121],[45,38,41],[48,38,44],[46,33,40],[46,35,44],[43,34,42],[37,30,37],[39,30,38],[45,34,42],[45,36,48],[43,31,41],[48,32,40],[81,48,48],[124,76,63],[163,119,94],[179,145,114],[183,152,122],[179,143,122],[141,101,89],[106,68,57],[182,150,130],[192,168,141],[189,171,150],[183,164,151],[200,178,166],[180,157,147],[205,183,173],[185,161,150],[195,175,159],[188,173,154],[183,157,142],[159,111,105],[172,133,128],[185,155,139],[190,165,139],[190,167,135],[186,164,133],[184,161,130],[180,156,126],[177,149,121],[170,139,112],[152,121,105],[95,71,73],[49,36,49],[55,47,60],[52,43,58],[43,38,54],[49,45,59],[55,49,61],[56,47,59],[66,52,53],[145,128,98],[193,179,134],[191,181,144],[189,178,133],[185,163,113],[143,123,80],[186,176,132],[193,189,147],[195,193,158],[197,195,159],[195,190,156],[193,185,150],[187,180,144],[187,180,144],[186,179,145],[184,175,135],[182,168,123],[178,158,118],[147,116,77],[174,154,114],[182,172,141],[183,176,149],[184,174,144],[182,167,134],[166,144,113],[115,91,61],[177,160,107],[186,167,129],[147,128,89],[157,141,105],[179,161,119],[174,143,97],[136,87,70],[150,117,73],[172,151,91],[175,157,103],[177,161,116],[176,162,118],[176,161,119],[175,160,121],[177,162,123],[172,156,112],[171,150,101],[166,133,87],[153,105,69],[130,67,70],[125,55,68],[125,52,66],[128,52,67],[128,51,66],[125,51,66],[123,52,66],[118,51,65],[114,49,63],[114,48,62],[116,48,62],[162,144,99],[156,135,88],[142,118,77],[110,84,57],[168,150,104],[176,168,117],[174,165,116],[172,157,109],[168,144,96],[152,121,75],[163,141,93],[179,167,118],[179,168,120],[174,158,112],[167,142,93],[153,127,78],[181,167,116],[183,177,129],[183,177,130],[182,175,130],[178,169,126],[177,164,123],[173,158,116],[169,151,105],[167,147,96],[165,135,89],[129,99,69],[121,99,70],[176,158,120],[163,151,119],[183,173,136],[178,166,129],[174,159,119],[173,148,103],[136,105,79],[141,120,86],[182,168,126],[158,145,125],[47,39,43],[47,37,44],[46,34,40],[46,36,45],[41,32,40],[37,30,37],[40,31,39],[48,36,45],[44,34,46],[40,30,40],[40,28,37],[64,39,40],[112,70,60],[156,110,88],[179,144,113],[184,157,125],[184,158,133],[187,157,141],[170,132,123],[170,131,118],[195,171,151],[200,193,174],[196,198,183],[206,205,190],[193,191,176],[204,203,187],[195,190,174],[195,178,164],[185,151,143],[176,131,126],[178,131,126],[176,147,132],[187,164,142],[190,169,140],[189,166,135],[185,162,130],[183,160,129],[182,154,124],[175,141,114],[164,129,106],[131,101,93],[67,46,54],[51,39,54],[52,46,58],[48,43,56],[44,40,55],[51,46,60],[55,49,63],[55,46,61],[66,53,58],[128,108,83],[192,177,133],[188,180,143],[187,178,135],[185,163,115],[141,122,79],[187,177,134],[194,190,150],[195,192,158],[196,194,159],[196,191,156],[192,185,149],[186,179,143],[187,180,144],[186,179,145],[183,174,134],[183,169,124],[177,157,117],[147,118,76],[170,152,108],[178,169,133],[181,173,141],[181,171,136],[179,164,128],[163,141,107],[118,93,62],[178,161,107],[185,166,130],[138,118,82],[163,147,111],[179,161,120],[172,141,97],[135,86,67],[152,119,74],[171,151,90],[175,158,104],[179,163,117],[176,161,117],[175,160,118],[175,160,119],[176,161,121],[174,156,111],[170,147,99],[165,131,86],[154,104,71],[129,64,70],[122,51,65],[121,49,63],[124,51,66],[125,51,66],[123,51,65],[123,51,65],[121,51,66],[118,50,65],[117,50,65],[116,50,64],[160,145,99],[156,136,87],[145,121,79],[109,81,56],[164,145,101],[175,168,116],[174,166,117],[172,157,109],[168,145,96],[155,125,78],[156,134,86],[180,167,118],[179,168,121],[175,160,113],[167,144,94],[154,127,79],[179,164,113],[183,176,127],[182,176,129],[183,176,131],[180,171,129],[177,163,124],[173,158,116],[170,152,106],[165,144,91],[164,134,85],[130,99,67],[118,96,66],[177,158,121],[165,152,120],[184,174,137],[179,167,129],[175,160,119],[173,148,102],[139,107,81],[139,118,84],[185,172,129],[164,149,127],[48,39,44],[46,36,45],[46,36,43],[46,36,45],[41,32,41],[37,30,38],[42,33,42],[49,36,46],[47,36,46],[41,32,41],[37,29,40],[49,32,38],[95,59,55],[142,96,80],[174,140,110],[183,157,122],[184,163,134],[189,167,145],[189,156,144],[183,140,131],[181,144,130],[192,165,154],[194,178,164],[209,190,177],[196,176,162],[201,182,168],[191,170,157],[184,148,142],[194,138,138],[191,137,135],[172,137,125],[182,159,138],[190,171,146],[191,173,145],[188,169,138],[185,164,133],[182,159,128],[181,149,120],[171,135,112],[147,115,99],[94,72,72],[50,36,49],[51,41,58],[42,37,47],[40,35,47],[45,42,56],[54,48,63],[56,49,64],[53,48,62],[63,52,61],[112,94,76],[183,168,127],[190,180,143],[189,177,135],[184,162,114],[140,121,79],[188,178,136],[194,189,149],[195,192,159],[195,193,158],[195,190,155],[193,186,150],[184,177,141],[189,181,146],[185,178,144],[185,176,136],[183,169,124],[176,156,116],[150,122,81],[177,159,115],[182,173,136],[184,174,141],[184,174,137],[182,167,131],[162,140,107],[119,94,65],[179,162,111],[185,165,131],[133,114,79],[168,152,116],[179,161,121],[172,141,99],[134,87,66],[155,124,76],[170,151,89],[174,159,104],[179,163,119],[176,162,117],[175,160,117],[174,159,117],[176,161,120],[173,156,110],[170,147,98],[162,127,83],[154,103,72],[127,61,69],[118,51,65],[117,51,65],[119,52,65],[120,50,65],[120,50,64],[122,50,64],[122,50,65],[120,50,66],[119,51,66],[119,49,66],[160,146,102],[154,137,88],[147,125,83],[109,82,55],[161,141,98],[174,165,115],[175,165,117],[173,158,110],[169,145,97],[156,127,80],[151,127,80],[179,167,118],[179,169,122],[176,162,116],[168,146,97],[153,127,78],[178,162,111],[183,176,128],[184,177,131],[184,177,132],[180,171,130],[177,164,124],[172,157,116],[169,151,106],[166,144,93],[163,133,83],[134,103,70],[115,91,63],[177,158,122],[164,152,118],[185,175,139],[180,168,131],[175,160,119],[173,149,104],[142,111,82],[136,114,80],[187,173,130],[168,154,131],[48,39,43],[44,35,45],[47,37,44],[46,36,45],[42,32,41],[39,30,39],[45,35,44],[47,36,46],[48,39,46],[42,35,43],[37,32,42],[43,30,40],[68,40,43],[121,78,68],[163,126,98],[177,153,115],[182,165,133],[187,172,146],[190,167,148],[184,147,134],[198,156,144],[201,161,154],[195,156,149],[198,154,150],[193,148,145],[199,155,153],[200,157,153],[200,154,150],[188,138,134],[171,129,119],[181,151,133],[189,168,144],[191,174,149],[188,172,145],[188,171,142],[184,165,134],[182,157,126],[177,142,115],[159,122,105],[121,92,85],[59,44,50],[48,37,53],[48,39,55],[42,35,47],[42,35,48],[50,45,57],[55,49,63],[53,46,62],[53,48,63],[61,52,63],[82,67,55],[170,159,122],[189,180,141],[190,176,133],[185,161,115],[139,119,77],[189,178,135],[193,189,149],[195,193,159],[196,192,159],[194,189,155],[194,185,151],[181,174,139],[188,182,147],[186,179,144],[183,175,136],[182,169,126],[175,155,115],[149,120,80],[176,158,115],[182,172,136],[184,174,142],[183,172,137],[179,165,130],[156,134,105],[121,97,67],[180,162,115],[182,163,131],[124,105,74],[163,148,114],[178,161,121],[171,140,99],[134,87,65],[158,127,78],[170,152,92],[175,159,106],[179,162,117],[177,162,117],[176,161,117],[175,160,117],[175,161,119],[172,154,108],[168,145,98],[158,123,78],[153,102,72],[125,61,68],[115,52,64],[111,49,62],[113,50,63],[113,48,62],[116,48,62],[117,47,62],[120,48,64],[120,49,65],[119,49,65],[120,47,65],[164,151,113],[158,144,98],[152,132,91],[116,91,57],[156,135,94],[175,163,113],[174,164,116],[174,159,112],[169,146,99],[157,131,83],[144,120,72],[178,166,117],[178,171,124],[175,162,117],[170,149,100],[155,128,80],[174,161,109],[182,175,128],[185,176,131],[184,177,132],[179,171,130],[177,166,127],[174,157,118],[171,153,108],[165,146,97],[166,139,90],[137,109,73],[110,87,61],[178,158,123],[166,152,118],[184,174,139],[178,169,132],[174,161,118],[173,151,107],[146,116,81],[135,109,79],[185,171,130],[168,155,133],[54,43,43],[44,36,44],[47,35,44],[47,34,44],[43,31,41],[41,30,39],[47,37,46],[46,36,45],[47,40,49],[44,39,47],[37,33,40],[38,31,39],[43,30,37],[89,57,54],[147,103,81],[175,147,110],[178,163,130],[185,171,144],[191,173,148],[194,168,147],[185,151,135],[187,149,136],[195,148,140],[198,142,138],[197,144,141],[199,145,143],[192,134,132],[178,121,114],[170,121,108],[180,146,127],[184,165,143],[190,175,150],[192,176,151],[189,173,146],[190,173,143],[183,162,131],[180,147,118],[165,127,103],[134,97,87],[81,54,58],[50,37,50],[49,39,55],[48,37,53],[42,34,49],[42,37,50],[55,49,58],[54,50,62],[50,46,61],[52,46,61],[60,51,64],[65,55,56],[153,148,130],[180,176,145],[182,174,143],[176,157,123],[138,121,83],[188,177,137],[194,189,150],[195,192,157],[196,192,161],[194,189,156],[191,186,150],[180,174,137],[187,182,145],[186,179,143],[185,176,139],[182,170,130],[176,155,115],[148,118,78],[176,158,116],[182,172,138],[183,174,144],[182,172,139],[179,166,131],[150,130,104],[125,103,68],[180,163,119],[182,165,132],[126,107,81],[174,160,129],[179,163,122],[174,141,103],[135,89,67],[159,129,79],[170,150,95],[176,159,105],[180,162,118],[178,161,115],[177,160,116],[176,160,116],[173,159,114],[174,154,110],[172,147,104],[160,125,79],[152,102,75],[122,61,64],[114,53,62],[112,49,60],[111,48,59],[113,49,61],[115,49,65],[113,48,64],[113,49,64],[115,48,63],[119,49,65],[119,48,64],[169,148,112],[169,148,105],[160,135,97],[122,95,66],[149,127,90],[176,164,114],[175,164,117],[173,158,113],[168,146,99],[160,134,86],[142,117,69],[178,164,116],[176,169,122],[176,163,118],[171,150,102],[158,131,83],[173,160,108],[182,174,127],[184,174,130],[181,174,130],[177,170,128],[176,165,125],[174,158,117],[171,154,109],[166,149,100],[166,142,92],[138,113,76],[108,87,61],[179,159,124],[166,151,117],[185,173,138],[178,168,131],[177,163,121],[172,151,106],[149,120,83],[130,104,75],[185,170,131],[172,158,136],[56,44,45],[45,34,43],[49,35,45],[48,34,44],[44,32,42],[41,30,39],[48,38,47],[46,36,45],[48,38,49],[45,38,48],[37,33,42],[38,33,42],[38,31,40],[55,35,38],[115,77,65],[168,131,103],[182,159,123],[184,171,142],[191,178,152],[194,176,151],[196,171,147],[189,158,134],[189,143,122],[182,128,111],[179,127,112],[178,126,112],[174,123,108],[176,134,115],[179,149,127],[182,162,139],[190,173,153],[196,181,159],[191,175,150],[189,170,143],[188,165,136],[179,152,123],[168,131,108],[144,104,88],[100,67,63],[64,44,52],[48,38,52],[46,36,52],[44,35,50],[41,33,47],[45,39,50],[59,53,63],[51,47,61],[49,45,60],[53,47,62],[59,51,67],[61,52,64],[124,121,121],[187,188,179],[188,191,179],[186,181,166],[148,144,123],[182,178,151],[189,186,155],[194,191,158],[196,194,160],[193,190,155],[190,186,147],[181,175,134],[189,182,143],[190,178,143],[186,174,137],[182,170,131],[175,154,116],[147,121,81],[175,160,117],[181,175,141],[182,175,146],[183,173,140],[179,165,131],[147,126,102],[133,110,76],[182,163,120],[174,155,121],[120,98,70],[177,161,129],[183,163,125],[176,140,106],[136,90,67],[162,132,80],[171,151,94],[176,160,105],[181,162,119],[177,159,116],[178,161,117],[177,160,117],[169,155,111],[173,154,110],[172,148,105],[160,125,80],[153,103,78],[121,60,64],[114,50,61],[114,49,60],[114,48,61],[114,47,62],[113,49,64],[108,46,62],[110,49,63],[112,49,62],[114,49,63],[117,48,63],[149,126,87],[149,123,78],[143,113,77],[109,79,52],[139,117,80],[175,161,114],[176,164,119],[172,158,113],[169,149,103],[160,136,87],[137,111,64],[179,161,114],[178,169,122],[177,165,120],[171,150,102],[161,134,86],[171,158,106],[183,175,128],[185,175,132],[183,176,133],[180,172,132],[178,167,127],[175,159,117],[171,155,109],[167,150,101],[165,141,91],[140,114,78],[107,86,59],[180,159,124],[167,152,118],[185,172,138],[181,168,132],[175,161,119],[174,153,107],[151,122,83],[126,100,71],[184,169,133],[176,161,140],[57,45,46],[46,35,44],[47,34,43],[51,37,48],[45,33,43],[44,32,42],[47,37,46],[46,36,45],[52,41,53],[47,40,50],[38,33,43],[37,32,42],[37,31,42],[38,30,39],[64,40,40],[133,98,82],[175,146,114],[185,169,137],[192,181,154],[196,186,161],[194,180,154],[191,172,144],[190,163,135],[186,151,127],[178,147,124],[177,146,124],[183,151,129],[186,161,139],[185,171,148],[188,178,156],[196,184,165],[196,181,159],[190,171,145],[191,165,137],[182,149,125],[165,126,106],[142,98,86],[113,72,65],[91,60,62],[62,45,54],[46,35,48],[45,36,51],[41,33,50],[42,35,48],[51,43,53],[57,51,63],[51,47,61],[50,46,61],[54,49,63],[58,52,64],[56,51,62],[79,78,83],[175,180,178],[187,198,190],[192,202,195],[192,200,191],[191,196,184],[189,192,173],[190,190,168],[190,189,164],[192,188,161],[190,184,154],[182,173,140],[191,183,149],[190,179,147],[186,175,140],[181,170,133],[172,153,116],[149,126,86],[174,161,119],[181,176,142],[183,176,147],[182,172,141],[179,164,131],[147,124,101],[133,109,76],[172,153,110],[169,148,115],[129,107,77],[168,151,116],[164,143,104],[157,121,87],[130,84,60],[162,132,80],[171,151,93],[176,159,103],[180,161,118],[180,161,118],[177,160,117],[175,158,115],[174,159,116],[173,156,110],[173,149,106],[159,125,80],[151,102,78],[116,55,61],[114,51,62],[114,49,62],[114,48,62],[116,49,64],[112,48,64],[107,47,62],[106,48,61],[108,48,60],[111,47,61],[113,48,62],[162,143,97],[159,135,86],[155,124,85],[121,91,62],[133,110,74],[173,159,112],[177,165,120],[172,158,114],[168,149,104],[162,138,89],[138,111,64],[177,158,112],[180,168,122],[178,166,120],[174,153,105],[162,135,87],[168,155,103],[182,175,128],[184,174,132],[183,176,134],[180,172,132],[175,164,122],[175,159,115],[173,155,109],[169,150,101],[169,142,93],[145,117,81],[104,81,55],[180,158,124],[164,147,113],[183,169,135],[179,167,131],[175,162,119],[176,155,108],[155,126,85],[124,98,70],[186,171,137],[176,163,141],[55,44,44],[45,37,45],[45,34,42],[50,37,47],[46,34,44],[45,34,43],[45,35,44],[48,38,47],[48,41,53],[47,42,53],[40,35,46],[39,31,44],[39,29,43],[37,30,44],[40,32,39],[76,50,45],[144,115,92],[180,159,127],[191,177,148],[196,188,165],[196,188,167],[196,185,164],[195,183,162],[198,179,161],[195,180,162],[195,181,164],[197,182,166],[197,183,168],[196,183,169],[196,188,170],[194,188,165],[193,176,153],[185,162,134],[178,145,118],[163,119,101],[140,91,81],[117,69,64],[111,67,65],[90,58,61],[60,41,48],[47,35,45],[45,36,50],[41,34,50],[41,35,47],[53,46,54],[54,48,61],[52,48,63],[51,47,62],[54,49,62],[58,52,63],[56,50,61],[65,62,70],[147,149,150],[192,202,193],[191,204,196],[189,202,197],[192,204,200],[193,204,197],[193,202,193],[192,200,189],[192,197,183],[191,192,174],[183,181,160],[185,183,159],[186,179,153],[184,175,145],[181,171,135],[172,152,115],[154,130,90],[178,163,122],[183,175,144],[186,176,149],[185,172,142],[180,165,132],[147,123,102],[140,116,85],[185,164,123],[172,152,121],[114,94,65],[180,166,128],[179,161,117],[173,138,102],[134,88,63],[166,136,83],[172,152,94],[176,160,104],[179,161,117],[178,160,117],[177,160,117],[178,161,119],[174,159,118],[173,156,110],[168,146,102],[158,125,80],[151,102,80],[116,55,62],[112,51,63],[112,49,62],[111,47,61],[112,48,64],[110,48,63],[108,46,61],[107,47,61],[109,47,60],[110,46,60],[110,46,60],[162,148,99],[160,140,93],[155,129,85],[122,95,63],[127,104,72],[173,159,114],[176,164,119],[171,159,112],[168,149,102],[163,139,89],[135,106,62],[173,152,106],[178,167,119],[178,166,122],[173,155,106],[164,139,88],[169,153,100],[183,174,127],[183,175,133],[182,176,134],[180,171,132],[178,165,124],[172,157,113],[172,154,108],[168,150,101],[167,142,92],[144,118,83],[96,75,51],[178,158,124],[163,146,111],[183,168,135],[181,168,132],[176,161,121],[174,154,105],[155,127,87],[121,97,70],[185,172,133],[168,159,134],[51,43,46],[43,36,43],[45,32,44],[48,35,45],[45,33,45],[44,32,44],[44,34,45],[47,37,48],[46,38,50],[49,44,56],[43,39,50],[37,32,44],[37,31,44],[36,30,43],[37,32,41],[42,32,35],[69,50,48],[145,120,102],[188,167,142],[197,187,161],[199,192,172],[200,195,179],[199,194,176],[200,192,178],[199,191,179],[199,190,178],[200,190,176],[200,191,176],[199,190,173],[199,190,169],[192,180,156],[187,164,139],[173,137,115],[153,105,89],[131,78,67],[119,66,59],[121,68,64],[118,69,68],[86,55,58],[56,39,46],[46,37,46],[42,37,48],[40,35,50],[43,36,50],[54,44,55],[51,48,59],[52,49,65],[51,46,65],[57,50,64],[59,51,62],[52,47,59],[58,55,67],[106,108,114],[181,190,185],[185,197,191],[185,199,194],[190,206,201],[190,205,201],[192,205,201],[193,207,202],[194,208,201],[194,207,201],[193,205,198],[193,201,191],[191,196,181],[187,187,167],[181,175,151],[168,157,130],[151,133,103],[178,163,130],[186,175,143],[187,177,147],[185,174,144],[179,166,136],[144,123,103],[137,116,83],[182,165,122],[173,155,126],[115,97,69],[180,168,132],[178,164,122],[171,140,106],[131,88,62],[166,139,84],[173,154,93],[175,158,104],[178,161,113],[177,160,114],[175,161,116],[176,162,117],[175,159,115],[170,152,104],[170,145,101],[160,125,81],[150,100,80],[115,55,63],[110,50,62],[108,49,61],[109,49,61],[110,48,62],[110,47,61],[108,46,59],[107,45,58],[109,45,59],[111,44,58],[111,46,59],[160,148,100],[159,141,97],[156,132,88],[127,101,68],[120,96,67],[171,158,114],[175,164,118],[172,160,112],[168,149,102],[164,140,90],[137,107,63],[169,147,102],[178,168,119],[177,166,122],[174,156,109],[164,139,89],[166,149,97],[183,173,127],[183,177,133],[184,177,135],[183,173,134],[179,166,125],[173,159,116],[171,154,109],[168,151,100],[168,143,93],[146,120,85],[94,73,50],[176,156,122],[163,146,109],[181,166,133],[180,168,131],[175,160,121],[174,154,104],[157,131,91],[108,85,58],[186,172,133],[168,159,132],[50,41,45],[46,38,43],[45,34,46],[49,36,46],[45,33,45],[44,33,44],[44,34,45],[46,36,47],[47,36,50],[51,45,57],[45,42,53],[38,35,46],[35,32,43],[36,31,41],[37,31,40],[36,33,39],[41,32,39],[65,46,46],[138,119,105],[192,176,150],[201,189,162],[202,194,172],[200,192,173],[200,190,175],[200,189,176],[199,188,174],[199,188,171],[200,188,168],[197,183,160],[196,176,153],[185,158,135],[167,128,108],[142,92,76],[132,73,62],[126,66,57],[129,74,64],[131,75,68],[121,71,68],[82,54,56],[53,40,47],[45,37,48],[41,37,48],[41,36,50],[45,37,51],[53,43,55],[48,46,57],[53,50,68],[51,46,66],[60,52,66],[61,52,62],[53,46,59],[55,53,66],[80,82,89],[168,176,175],[182,193,189],[180,194,190],[191,207,203],[192,208,205],[195,209,206],[196,212,208],[196,211,208],[196,211,209],[196,211,209],[194,211,207],[194,210,205],[198,210,202],[196,204,194],[185,190,178],[171,167,151],[174,169,148],[182,176,151],[186,179,153],[184,174,146],[181,166,134],[145,123,104],[137,116,84],[180,166,123],[169,153,128],[117,101,76],[180,169,135],[177,162,122],[169,138,105],[129,87,61],[168,142,87],[173,155,93],[175,158,104],[178,160,110],[175,160,111],[174,161,115],[176,162,117],[176,159,114],[173,152,103],[172,144,99],[158,119,76],[149,97,78],[115,53,63],[111,50,62],[108,47,60],[109,48,60],[111,47,61],[111,45,60],[110,46,60],[108,46,59],[110,46,60],[111,45,59],[111,43,56],[158,145,100],[158,139,95],[155,132,87],[130,103,71],[112,88,60],[169,154,111],[175,164,118],[173,161,114],[171,152,106],[165,142,91],[138,108,65],[165,144,98],[177,167,118],[179,168,124],[175,157,109],[167,142,92],[165,147,97],[183,174,128],[184,177,134],[186,177,136],[184,174,135],[180,168,129],[174,161,119],[171,156,112],[169,152,102],[169,145,93],[149,122,86],[91,69,46],[174,154,120],[164,148,111],[179,164,131],[179,167,130],[169,154,116],[173,153,103],[159,133,93],[102,79,53],[183,169,131],[170,159,134],[54,43,46],[52,42,46],[46,34,46],[48,36,46],[46,34,46],[43,33,44],[43,33,44],[45,36,47],[48,37,50],[50,42,55],[49,45,56],[41,37,48],[36,32,42],[36,32,40],[37,31,40],[35,33,42],[36,32,42],[40,32,45],[53,39,42],[128,108,91],[188,169,142],[199,184,156],[199,184,156],[200,184,158],[199,182,156],[194,179,154],[194,177,151],[196,172,146],[195,163,137],[181,141,116],[156,109,85],[142,86,68],[142,79,65],[140,74,61],[140,77,65],[142,84,70],[141,85,71],[123,73,68],[83,56,57],[52,41,48],[46,39,51],[41,37,51],[41,37,51],[44,37,51],[52,43,55],[48,44,57],[55,51,67],[52,46,63],[62,52,67],[62,51,62],[58,51,63],[60,57,70],[61,62,71],[144,151,152],[176,188,184],[176,190,187],[191,209,206],[190,208,207],[194,211,210],[197,214,213],[197,214,213],[197,214,213],[198,215,215],[197,215,215],[196,215,214],[195,213,212],[198,215,213],[196,212,211],[196,208,207],[194,203,198],[187,191,180],[185,185,170],[181,175,154],[178,165,136],[142,121,105],[137,117,86],[180,166,125],[167,152,130],[125,109,88],[181,169,137],[177,161,121],[169,136,102],[129,87,60],[169,143,88],[172,153,92],[174,157,104],[178,160,109],[176,160,110],[175,161,114],[175,160,115],[175,157,111],[172,148,98],[171,139,93],[158,116,73],[151,95,78],[117,52,62],[113,48,61],[112,46,60],[114,46,60],[114,45,59],[114,44,59],[113,46,61],[110,46,60],[109,47,60],[109,43,57],[113,42,57],[161,147,104],[159,140,96],[156,132,86],[134,107,76],[105,80,55],[168,152,111],[175,163,119],[173,161,115],[170,153,107],[166,143,93],[141,112,68],[156,135,89],[177,167,118],[179,168,124],[177,159,113],[169,144,95],[163,146,96],[183,173,129],[184,175,134],[184,175,133],[183,173,135],[180,167,131],[175,163,124],[170,156,112],[169,154,105],[169,145,93],[153,126,88],[92,69,44],[172,152,119],[165,148,111],[176,161,128],[181,169,132],[172,157,119],[171,151,102],[164,137,99],[101,78,53],[182,167,130],[167,155,130],[60,46,48],[61,50,51],[45,34,45],[45,35,44],[45,35,46],[44,35,46],[43,35,46],[45,37,48],[49,37,51],[49,40,53],[52,46,58],[44,38,50],[36,32,43],[36,32,42],[38,30,42],[35,33,43],[35,33,44],[37,31,45],[40,31,42],[51,36,38],[95,75,67],[150,127,110],[177,150,123],[184,151,124],[185,149,119],[183,150,119],[179,143,115],[176,133,106],[162,111,86],[150,93,68],[146,87,63],[148,88,67],[151,88,69],[151,88,68],[152,92,72],[149,95,71],[148,97,73],[127,79,70],[82,56,57],[53,42,49],[46,41,54],[42,39,53],[41,38,52],[41,35,49],[48,40,51],[45,41,53],[55,51,65],[53,47,62],[60,50,64],[61,50,61],[57,49,61],[74,70,84],[57,57,67],[106,111,114],[171,182,180],[172,188,185],[191,211,209],[192,212,213],[194,213,214],[195,214,214],[196,214,215],[197,215,217],[198,217,219],[199,217,217],[199,218,217],[199,218,217],[197,215,216],[199,217,217],[197,217,220],[197,215,217],[198,211,211],[198,208,203],[189,196,185],[176,176,159],[140,128,119],[137,121,94],[181,166,125],[164,150,127],[130,115,93],[181,170,136],[179,161,119],[167,132,97],[129,87,60],[170,144,89],[173,155,93],[176,159,106],[179,161,110],[177,160,110],[173,158,111],[175,159,113],[176,157,111],[172,148,95],[170,138,91],[157,114,71],[150,94,77],[118,51,62],[116,47,60],[117,45,60],[118,46,60],[117,45,59],[115,46,61],[112,46,60],[107,43,57],[107,42,56],[110,43,58],[116,43,60],[161,148,105],[157,138,94],[156,133,87],[135,109,78],[100,75,50],[165,148,107],[174,162,118],[174,162,116],[170,154,108],[165,142,92],[145,115,72],[150,128,83],[178,167,118],[178,167,124],[176,159,113],[170,146,98],[161,143,93],[182,171,127],[183,175,132],[183,174,132],[182,173,134],[181,169,132],[175,163,124],[170,157,114],[168,152,104],[169,145,93],[153,124,87],[90,66,42],[169,149,115],[169,152,115],[175,160,127],[183,170,134],[175,159,121],[171,150,102],[165,139,100],[101,77,53],[180,166,130],[169,157,133],[62,47,47],[67,55,56],[45,34,45],[45,36,46],[44,34,45],[43,35,46],[43,35,46],[45,36,47],[49,37,51],[49,40,53],[50,44,56],[48,42,54],[40,35,47],[37,32,45],[40,30,45],[37,31,43],[38,32,44],[39,30,40],[37,31,44],[39,31,48],[51,35,45],[72,45,44],[106,59,51],[135,78,65],[151,89,71],[155,94,73],[156,98,74],[157,98,72],[161,98,73],[159,94,69],[160,96,70],[156,99,71],[156,101,72],[158,103,73],[158,106,75],[161,111,79],[155,108,78],[130,85,73],[82,55,57],[55,41,50],[50,43,57],[44,41,56],[41,38,54],[42,36,50],[45,37,47],[43,38,51],[53,49,63],[53,47,61],[57,47,59],[60,47,59],[55,46,57],[86,81,96],[63,62,74],[77,80,87],[155,166,165],[172,189,185],[186,207,205],[194,215,217],[194,215,217],[195,214,216],[196,216,217],[198,217,220],[200,219,223],[198,219,222],[198,220,224],[198,220,223],[198,219,222],[198,218,221],[199,220,221],[197,217,221],[198,217,220],[197,216,216],[194,213,211],[193,208,203],[182,179,178],[149,137,114],[181,166,126],[161,149,122],[133,121,95],[180,170,133],[178,160,118],[166,130,96],[131,89,62],[173,147,91],[173,154,93],[175,158,105],[179,160,108],[175,158,107],[174,157,110],[176,159,113],[176,156,109],[170,148,93],[168,138,89],[156,114,70],[145,90,73],[116,50,62],[118,47,61],[120,46,61],[120,45,60],[119,46,61],[116,48,63],[111,45,59],[110,44,59],[113,45,60],[116,43,60],[117,43,60],[161,149,104],[153,134,92],[155,133,85],[136,112,78],[94,70,45],[163,142,103],[172,160,117],[171,162,112],[169,153,107],[164,141,93],[147,116,76],[143,118,78],[178,165,120],[179,168,125],[174,163,116],[168,147,97],[161,140,91],[182,170,124],[182,174,131],[183,176,132],[181,174,130],[178,169,127],[178,165,123],[172,158,114],[170,152,106],[167,147,93],[157,124,85],[92,69,45],[165,145,111],[172,155,118],[171,155,123],[183,171,134],[175,160,119],[170,149,105],[165,141,97],[101,79,56],[176,163,131],[169,159,135],[61,47,47],[63,50,59],[44,34,45],[43,37,49],[41,34,45],[44,36,47],[43,35,45],[47,37,47],[46,37,50],[48,40,53],[50,42,55],[51,43,56],[43,35,48],[38,32,44],[40,32,45],[38,30,43],[39,33,45],[37,31,43],[36,31,43],[38,33,42],[45,33,41],[65,43,48],[89,47,47],[124,66,60],[150,83,67],[161,96,71],[165,106,73],[164,108,72],[165,109,73],[164,106,71],[164,105,70],[164,111,73],[165,117,76],[168,123,79],[174,128,87],[170,124,84],[159,114,78],[134,89,72],[89,60,65],[58,43,53],[50,44,54],[43,41,53],[41,39,53],[42,36,50],[45,36,49],[42,37,49],[56,53,64],[55,50,62],[58,48,62],[59,48,59],[52,43,53],[84,80,93],[75,75,87],[62,62,73],[124,132,133],[175,190,185],[185,204,205],[197,218,222],[196,217,219],[196,215,219],[198,219,222],[198,219,223],[200,221,225],[199,221,225],[200,221,226],[202,223,228],[200,221,226],[199,220,225],[200,221,225],[200,221,224],[200,219,220],[199,219,217],[193,216,215],[194,217,218],[201,210,211],[181,178,166],[178,169,140],[159,146,126],[137,124,98],[181,170,134],[178,159,121],[166,129,96],[133,89,60],[172,148,86],[176,155,93],[176,157,103],[177,160,105],[175,158,105],[174,156,107],[177,159,112],[175,156,108],[172,149,96],[166,135,82],[152,111,65],[141,85,70],[113,49,60],[110,47,58],[112,46,58],[116,47,60],[116,45,59],[117,46,61],[117,43,60],[119,44,61],[118,44,61],[116,43,60],[115,43,60],[159,147,103],[154,135,94],[155,133,84],[138,115,80],[91,66,44],[156,135,97],[172,159,115],[170,161,113],[170,154,107],[166,143,95],[149,119,79],[136,111,71],[177,163,118],[178,167,124],[173,162,115],[171,150,100],[161,140,91],[182,170,124],[182,174,132],[182,175,133],[181,174,131],[178,169,128],[177,163,123],[173,158,114],[171,152,106],[169,150,94],[162,128,89],[97,74,50],[160,141,107],[173,156,120],[166,150,118],[184,171,135],[175,163,124],[170,153,112],[165,143,100],[103,82,59],[173,160,127],[174,160,135],[69,53,50],[66,55,60],[44,37,45],[42,36,48],[42,35,47],[43,35,47],[43,35,46],[47,37,47],[45,37,50],[47,39,52],[50,42,55],[50,42,55],[43,36,49],[40,33,45],[40,32,45],[39,31,44],[39,33,45],[38,32,44],[36,32,43],[37,32,43],[45,33,41],[62,43,47],[82,50,46],[112,65,53],[151,94,69],[167,113,74],[170,120,77],[172,122,81],[170,120,79],[168,116,75],[170,118,77],[175,123,81],[178,131,87],[178,137,88],[180,140,94],[175,135,92],[166,122,87],[142,95,78],[91,59,63],[61,45,54],[51,45,53],[48,44,54],[43,38,51],[42,35,47],[44,36,47],[43,36,48],[49,45,56],[56,50,62],[56,46,60],[59,47,59],[54,44,55],[75,71,82],[83,82,95],[56,56,68],[96,102,107],[175,189,185],[183,201,201],[199,220,224],[197,217,219],[197,217,221],[197,218,222],[200,222,227],[201,224,229],[199,223,228],[199,222,228],[201,224,229],[201,224,230],[199,222,228],[200,221,229],[200,221,228],[200,220,225],[199,219,223],[199,219,223],[198,219,224],[198,218,220],[193,203,196],[182,180,163],[156,144,131],[139,124,101],[182,169,134],[180,160,123],[165,128,96],[135,93,62],[174,150,86],[176,155,92],[175,156,100],[176,159,104],[174,156,105],[172,154,107],[175,157,111],[173,154,108],[173,150,97],[170,138,86],[154,110,68],[140,82,69],[114,48,59],[111,46,58],[111,44,56],[113,43,57],[115,44,58],[114,45,59],[116,45,59],[117,44,58],[116,44,58],[117,45,59],[119,43,61],[159,147,104],[155,136,95],[155,133,85],[139,116,80],[91,65,45],[151,129,94],[171,160,113],[170,160,115],[170,154,107],[166,143,95],[152,121,83],[129,104,65],[176,163,116],[177,166,122],[174,163,116],[171,151,101],[161,140,90],[181,169,123],[183,175,132],[181,174,132],[180,173,131],[179,170,129],[176,162,123],[172,159,113],[170,153,105],[168,149,92],[165,129,90],[98,74,50],[155,136,103],[177,160,125],[164,148,117],[184,170,136],[178,163,122],[175,154,111],[169,143,99],[110,86,62],[173,159,127],[178,168,145],[73,63,60],[78,71,74],[41,38,45],[41,36,48],[42,35,48],[41,33,46],[44,35,47],[47,37,48],[44,36,49],[44,36,49],[49,41,54],[49,41,54],[46,38,51],[40,34,47],[40,32,47],[40,32,47],[39,33,47],[39,33,46],[37,32,45],[38,33,43],[44,32,41],[61,41,47],[86,54,55],[107,59,53],[142,85,66],[162,108,73],[173,125,80],[180,132,87],[178,129,84],[176,126,81],[175,125,80],[175,127,83],[178,136,88],[182,145,93],[181,147,96],[180,146,100],[174,132,96],[149,103,83],[94,62,64],[59,44,53],[53,46,54],[50,42,53],[48,40,53],[45,37,48],[43,36,46],[43,35,48],[43,38,49],[56,51,63],[54,46,59],[59,47,60],[56,46,57],[61,57,67],[95,93,105],[55,53,66],[72,75,84],[168,179,179],[182,200,199],[198,219,223],[197,218,220],[198,219,221],[198,220,223],[200,223,228],[201,224,231],[201,224,231],[201,224,231],[201,224,232],[201,224,232],[201,224,232],[201,225,233],[201,224,232],[202,224,232],[200,221,229],[200,220,227],[202,223,230],[196,220,225],[192,210,210],[193,200,194],[153,148,142],[138,127,107],[182,168,135],[180,158,122],[162,125,94],[138,96,65],[173,148,85],[175,154,92],[176,158,103],[178,161,105],[174,154,102],[174,154,106],[175,155,109],[173,152,105],[171,147,95],[167,135,86],[153,107,68],[140,77,68],[117,47,60],[115,47,60],[114,44,58],[113,42,56],[114,44,57],[111,45,57],[114,44,58],[115,43,57],[115,43,57],[117,44,59],[124,43,61],[158,145,104],[157,138,98],[155,133,85],[142,119,82],[91,66,47],[144,121,88],[171,159,110],[171,160,118],[171,154,108],[168,145,97],[156,125,88],[124,98,59],[174,161,114],[178,168,123],[175,163,116],[173,152,102],[161,140,90],[180,168,122],[181,173,131],[182,174,134],[181,173,133],[179,170,130],[176,163,124],[170,159,113],[170,154,106],[168,149,91],[166,130,89],[101,77,53],[147,130,98],[181,165,130],[163,146,117],[185,169,136],[180,163,126],[175,155,116],[166,145,106],[109,90,75],[165,158,135],[179,182,167],[89,93,92],[100,102,106],[53,50,60],[43,37,52],[44,37,50],[42,34,47],[44,35,48],[47,37,49],[44,36,49],[44,36,49],[47,39,52],[49,41,54],[49,42,55],[42,36,50],[41,33,48],[41,33,48],[40,34,48],[40,34,48],[37,32,46],[38,32,45],[44,32,42],[57,38,44],[86,56,56],[107,61,59],[130,75,59],[163,111,78],[176,132,88],[177,136,90],[178,136,90],[176,134,88],[180,136,90],[183,141,96],[183,147,98],[183,151,99],[185,153,103],[181,149,102],[174,138,97],[156,114,90],[95,65,66],[57,45,56],[50,43,54],[52,42,56],[51,38,55],[45,35,50],[43,36,47],[44,35,48],[40,34,46],[53,48,60],[54,47,59],[56,45,59],[55,44,55],[55,50,59],[101,99,109],[54,52,66],[59,60,72],[154,163,164],[183,200,198],[199,219,223],[197,219,221],[198,220,222],[196,220,223],[201,224,230],[202,226,235],[202,226,235],[201,225,234],[202,225,235],[202,226,235],[202,226,235],[200,225,232],[201,225,232],[202,226,233],[200,223,231],[200,223,232],[202,225,234],[199,220,228],[192,210,215],[193,207,207],[171,175,174],[143,139,121],[180,169,136],[180,157,121],[163,122,94],[142,98,71],[174,149,88],[176,154,95],[176,157,106],[177,160,103],[174,155,98],[174,154,102],[177,157,107],[172,152,101],[171,146,95],[167,133,87],[152,103,68],[138,74,67],[119,47,61],[117,46,60],[116,44,58],[116,45,59],[114,43,57],[111,44,55],[112,43,55],[117,43,57],[118,42,56],[120,44,58],[124,43,60],[161,147,107],[156,137,97],[153,131,85],[143,120,83],[95,69,49],[135,112,81],[170,158,109],[169,160,115],[172,156,110],[169,146,101],[155,126,89],[123,96,58],[174,158,113],[177,168,120],[176,164,118],[173,153,103],[160,140,88],[176,165,119],[181,174,134],[182,175,136],[181,173,134],[180,169,131],[176,163,125],[171,160,114],[168,153,102],[169,149,94],[164,133,89],[105,82,57],[140,124,93],[181,167,131],[161,144,114],[182,167,134],[181,167,133],[173,158,130],[164,155,131],[150,150,142],[187,199,189],[196,213,207],[106,121,122],[118,127,132],[75,75,86],[44,38,54],[43,38,53],[42,36,50],[43,36,49],[46,36,49],[45,37,50],[45,36,49],[49,39,53],[52,44,57],[50,43,56],[44,37,50],[40,34,48],[39,33,47],[41,36,50],[41,35,49],[37,33,45],[37,32,44],[43,32,42],[54,37,44],[84,57,54],[121,77,67],[132,81,61],[154,107,73],[177,138,93],[178,146,98],[179,148,100],[179,148,99],[183,151,103],[185,154,107],[185,155,107],[188,159,110],[187,157,109],[187,157,110],[184,153,109],[166,129,102],[96,70,70],[56,45,57],[49,42,54],[53,43,57],[50,39,55],[47,37,51],[45,36,48],[45,36,50],[40,33,46],[49,44,56],[56,49,60],[56,48,59],[52,44,56],[54,50,60],[85,83,94],[64,62,76],[53,54,69],[127,137,139],[182,199,197],[201,222,225],[196,218,221],[198,220,222],[196,220,224],[200,225,232],[202,228,238],[202,228,238],[202,228,238],[202,227,237],[203,227,237],[203,227,235],[200,226,232],[201,226,231],[201,226,232],[200,225,233],[199,224,234],[202,226,237],[199,219,227],[194,212,216],[192,211,211],[190,201,199],[173,172,156],[180,171,136],[181,158,118],[161,121,91],[143,101,73],[173,150,92],[176,155,97],[177,156,105],[177,158,104],[175,155,101],[173,152,101],[176,155,105],[171,150,98],[169,143,91],[163,130,84],[151,104,69],[137,73,66],[121,48,62],[118,45,58],[118,45,59],[118,46,60],[116,44,59],[114,44,57],[116,43,56],[121,44,59],[121,43,58],[120,42,57],[124,42,60],[158,143,105],[155,136,97],[151,129,86],[145,122,84],[98,73,50],[126,104,75],[171,157,111],[168,161,113],[170,156,111],[168,146,103],[157,129,91],[121,92,56],[173,154,111],[177,168,119],[175,164,119],[173,153,105],[161,142,88],[176,166,119],[179,174,135],[181,174,135],[183,174,135],[181,170,131],[178,164,127],[171,158,113],[167,155,101],[169,148,97],[163,136,88],[110,86,62],[132,117,89],[182,170,133],[161,143,112],[180,165,134],[179,169,136],[172,167,149],[194,201,193],[200,218,214],[199,223,223],[195,219,217],[120,144,141],[127,143,145],[100,103,114],[45,42,57],[43,39,54],[41,38,52],[43,37,50],[45,36,49],[44,36,48],[44,36,48],[50,39,52],[52,44,56],[50,43,55],[41,36,49],[39,35,49],[39,35,49],[39,36,50],[40,36,50],[37,34,46],[37,33,43],[41,32,43],[50,36,45],[80,51,51],[131,86,72],[147,100,74],[150,108,71],[176,141,97],[185,157,114],[184,158,113],[185,160,115],[188,161,116],[189,162,117],[190,163,119],[190,164,120],[189,163,118],[189,163,119],[188,159,120],[167,134,110],[92,69,68],[59,47,57],[49,42,52],[51,45,57],[50,42,56],[49,39,51],[45,35,45],[44,36,49],[42,35,48],[47,41,53],[55,49,58],[56,49,58],[52,47,59],[52,49,61],[69,67,80],[71,71,83],[53,55,71],[110,121,124],[177,195,193],[198,220,223],[196,219,223],[198,219,223],[198,221,226],[203,228,235],[203,229,240],[202,229,240],[202,230,240],[200,227,236],[201,226,235],[202,227,234],[201,226,235],[203,228,234],[201,226,231],[199,224,232],[199,224,235],[201,225,236],[196,219,225],[193,214,216],[192,211,212],[192,206,204],[187,189,179],[179,172,141],[179,158,116],[160,120,88],[146,107,74],[172,150,94],[175,156,96],[177,156,104],[179,158,106],[176,154,105],[175,153,105],[177,155,107],[172,150,100],[169,143,92],[162,131,84],[151,107,71],[137,76,67],[119,47,60],[116,45,57],[117,45,59],[117,45,59],[116,44,59],[117,45,60],[119,45,60],[120,44,59],[119,43,59],[117,42,57],[122,43,59],[158,144,107],[157,138,100],[149,127,83],[146,121,84],[103,77,54],[117,93,68],[171,154,110],[169,160,112],[171,157,112],[167,146,100],[158,130,90],[118,89,53],[168,148,108],[176,167,120],[175,164,120],[173,154,106],[161,142,87],[175,164,116],[180,174,134],[180,174,135],[182,173,134],[179,168,129],[176,162,125],[174,159,115],[167,154,101],[168,147,97],[164,137,87],[116,91,68],[125,108,83],[183,168,133],[164,145,116],[176,162,136],[174,173,148],[187,198,190],[199,222,226],[199,227,231],[203,227,233],[195,221,221],[135,160,157],[145,164,163],[125,133,141],[51,51,65],[44,42,56],[41,39,52],[44,39,52],[44,36,49],[45,37,48],[46,38,49],[46,38,49],[50,42,53],[49,42,54],[41,37,51],[39,35,49],[39,37,51],[40,38,52],[40,37,51],[39,35,49],[39,33,45],[42,33,44],[49,36,46],[79,52,52],[132,93,76],[160,123,91],[162,134,90],[174,149,105],[186,163,124],[187,167,127],[188,168,128],[190,168,129],[193,168,130],[193,169,129],[191,169,128],[188,168,127],[190,172,132],[191,166,133],[170,140,119],[89,68,68],[61,49,60],[50,44,55],[52,47,60],[52,45,59],[49,40,53],[47,37,47],[45,37,48],[44,37,50],[45,39,51],[53,45,57],[56,49,60],[54,49,61],[51,48,61],[61,59,72],[63,63,76],[59,59,77],[95,104,109],[169,187,186],[198,220,224],[198,221,225],[200,222,225],[198,221,226],[203,227,235],[203,229,240],[203,231,242],[202,230,240],[203,230,239],[203,228,238],[203,228,235],[202,226,235],[202,227,233],[202,226,231],[200,223,230],[200,223,233],[201,225,235],[194,217,221],[193,213,215],[193,211,213],[189,206,208],[191,198,196],[181,179,158],[178,157,124],[161,118,90],[149,110,75],[171,150,93],[175,155,97],[177,157,103],[176,156,103],[174,152,102],[175,153,104],[175,153,105],[171,149,99],[168,141,92],[161,130,84],[152,108,72],[136,75,67],[117,47,61],[115,47,60],[115,45,59],[116,43,59],[117,43,60],[115,45,60],[116,46,60],[116,44,59],[114,42,57],[115,43,58],[115,45,59],[157,145,108],[158,140,102],[151,129,85],[148,121,83],[106,80,57],[110,86,62],[170,151,109],[170,159,112],[170,156,111],[168,147,99],[159,131,89],[119,90,54],[161,141,102],[176,166,122],[176,166,123],[174,155,108],[163,143,89],[173,160,112],[180,173,133],[180,174,134],[181,172,133],[179,168,130],[176,161,125],[175,158,115],[168,155,103],[168,147,99],[166,138,87],[124,97,73],[120,101,77],[183,167,132],[163,147,120],[167,159,141],[181,194,183],[201,224,227],[196,227,235],[199,229,236],[201,228,237],[197,223,225],[143,166,164],[164,182,180],[137,148,153],[66,68,81],[44,42,56],[41,40,53],[43,40,52],[44,37,50],[45,36,47],[46,39,49],[45,38,48],[49,41,52],[50,42,54],[42,38,52],[40,37,51],[40,38,52],[40,38,52],[41,39,53],[40,36,50],[41,33,47],[43,33,45],[47,36,47],[75,51,54],[121,87,71],[163,132,102],[173,151,112],[180,159,119],[187,168,132],[190,173,137],[191,174,140],[190,172,140],[193,172,140],[192,173,140],[191,174,140],[190,174,140],[194,177,144],[192,169,140],[163,134,119],[86,67,71],[61,51,65],[52,48,60],[53,49,63],[52,46,61],[49,41,55],[48,40,50],[47,39,49],[45,39,51],[44,38,51],[51,44,56],[55,48,60],[55,49,63],[50,47,61],[61,59,73],[59,58,72],[62,61,80],[91,97,104],[166,183,183],[197,218,224],[199,222,226],[201,222,225],[197,221,226],[203,228,236],[201,228,238],[204,231,242],[202,230,240],[203,231,239],[203,228,237],[202,227,234],[202,226,236],[202,226,232],[201,225,229],[201,223,228],[201,223,231],[202,226,233],[195,217,220],[194,213,214],[191,209,211],[188,207,208],[189,201,204],[186,190,179],[175,157,132],[157,115,89],[149,111,74],[172,152,95],[174,156,97],[177,158,101],[173,153,98],[177,155,105],[176,154,105],[176,154,105],[170,148,98],[169,142,93],[163,131,86],[156,111,76],[137,75,69],[117,48,62],[115,48,61],[115,47,62],[117,47,63],[117,45,62],[113,46,61],[107,42,56],[109,43,57],[115,45,61],[113,42,58],[106,42,56],[158,147,111],[157,140,102],[152,129,85],[149,122,83],[110,84,62],[101,77,55],[169,148,108],[170,157,111],[168,155,109],[166,146,96],[159,132,88],[118,89,54],[154,134,96],[175,165,123],[174,165,123],[175,157,111],[165,145,91],[172,159,110],[180,172,132],[180,174,134],[182,173,134],[179,168,130],[178,163,127],[175,157,115],[168,154,104],[170,149,101],[166,139,88],[131,103,77],[115,95,70],[183,168,131],[166,154,129],[166,167,156],[201,225,227],[200,228,238],[200,227,233],[201,230,234],[202,230,239],[202,226,231],[161,181,180],[176,191,189],[139,149,154],[78,80,93],[44,43,57],[42,41,54],[41,38,50],[44,37,49],[45,36,46],[46,39,47],[44,39,46],[48,41,49],[49,41,52],[44,42,56],[41,39,53],[41,39,53],[39,38,54],[43,42,56],[43,39,53],[44,35,50],[44,33,47],[48,38,49],[68,46,52],[119,86,74],[162,133,109],[178,156,128],[184,164,132],[190,172,137],[192,176,142],[192,176,145],[193,176,147],[193,178,148],[192,178,148],[190,176,145],[193,178,148],[193,176,146],[188,164,138],[157,128,115],[80,64,72],[55,50,67],[52,49,63],[52,48,62],[54,47,62],[52,44,58],[50,42,53],[49,42,49],[46,39,50],[45,39,53],[50,42,55],[53,46,59],[56,51,65],[51,48,62],[61,59,73],[60,59,74],[63,60,79],[83,89,96],[159,174,175],[195,216,222],[199,222,227],[202,223,226],[198,222,226],[203,228,236],[201,228,238],[204,232,242],[203,231,241],[204,231,240],[201,226,236],[200,225,232],[201,227,237],[201,226,231],[199,222,226],[201,220,226],[203,224,231],[199,222,228],[196,217,220],[194,213,215],[192,209,212],[189,207,206],[187,201,204],[186,195,189],[180,168,148],[155,116,91],[152,116,78],[172,152,95],[172,155,97],[176,157,100],[177,158,102],[177,155,105],[176,154,106],[177,155,107],[169,147,98],[170,143,95],[160,128,83],[156,112,78],[138,76,71],[120,50,65],[116,48,62],[116,48,63],[115,48,63],[112,45,62],[110,46,60],[104,43,55],[107,45,58],[112,44,60],[111,40,56],[103,42,54],[157,147,109],[156,139,99],[151,128,89],[150,124,81],[114,88,68],[93,70,50],[165,145,105],[170,157,107],[167,152,107],[167,146,99],[159,133,90],[121,91,62],[145,123,82],[176,162,125],[175,164,121],[172,159,114],[165,149,100],[169,159,113],[179,174,133],[179,174,135],[178,172,136],[177,168,132],[176,162,127],[171,158,116],[167,154,109],[167,150,101],[164,142,94],[138,114,85],[110,91,72],[182,169,124],[169,164,144],[183,198,197],[206,234,245],[201,230,242],[200,229,239],[201,230,239],[199,230,237],[202,228,230],[163,184,183],[181,197,195],[149,161,164],[97,104,114],[48,46,60],[45,42,56],[39,37,49],[43,38,47],[45,36,48],[46,38,48],[44,37,45],[47,40,49],[47,41,51],[45,42,55],[43,40,56],[42,39,58],[43,40,57],[43,42,56],[42,40,57],[44,38,54],[46,38,52],[49,37,54],[66,43,52],[112,79,73],[162,133,112],[180,161,134],[186,170,141],[189,174,142],[192,178,148],[193,180,151],[194,181,154],[193,182,155],[193,180,153],[193,177,151],[194,180,153],[192,177,151],[189,167,143],[151,130,114],[77,61,75],[57,50,71],[52,49,64],[55,51,68],[54,49,66],[52,45,60],[51,44,56],[49,40,53],[47,41,55],[44,40,55],[47,42,56],[52,44,57],[56,49,62],[52,50,63],[63,61,75],[62,60,74],[62,59,75],[74,80,90],[157,173,174],[191,213,215],[199,221,232],[203,223,228],[201,222,225],[204,228,236],[199,227,237],[202,231,238],[204,231,243],[205,231,243],[201,225,232],[201,223,231],[200,226,235],[200,224,228],[201,220,225],[201,219,227],[204,225,233],[195,219,223],[196,216,220],[193,212,215],[193,208,211],[190,207,207],[188,203,204],[184,197,198],[186,182,173],[151,119,97],[155,125,84],[172,154,97],[175,156,101],[173,156,104],[174,157,100],[173,155,101],[172,154,105],[177,157,111],[172,149,105],[174,145,99],[158,129,83],[156,118,80],[134,77,69],[119,50,66],[113,47,62],[111,47,63],[109,47,62],[108,47,63],[108,45,62],[106,44,60],[108,45,62],[111,44,62],[109,40,58],[103,41,57],[157,149,109],[156,141,100],[153,131,92],[148,122,77],[118,92,72],[85,63,44],[159,139,101],[169,155,106],[168,152,107],[164,143,98],[158,132,87],[125,94,66],[137,115,75],[175,160,121],[173,164,119],[171,159,113],[165,149,100],[176,164,120],[182,177,138],[181,177,139],[180,176,140],[178,170,137],[180,168,134],[174,164,125],[172,159,120],[173,157,111],[173,153,109],[155,133,105],[110,91,75],[177,168,127],[179,182,170],[202,225,231],[204,234,247],[203,232,244],[200,230,240],[201,231,240],[200,229,237],[204,229,233],[168,188,187],[188,204,202],[156,171,171],[133,144,151],[55,54,68],[48,41,57],[43,39,53],[45,38,49],[44,36,50],[45,37,48],[45,38,46],[48,40,50],[47,41,52],[44,41,54],[44,41,57],[43,40,59],[42,40,57],[44,43,58],[43,41,59],[46,40,57],[52,43,56],[51,39,55],[65,45,55],[109,77,73],[157,130,109],[181,163,137],[188,173,146],[191,177,148],[193,181,153],[192,182,155],[194,184,159],[194,186,163],[195,185,163],[195,183,160],[195,184,160],[194,181,158],[185,168,145],[135,119,107],[68,56,71],[55,50,69],[54,52,67],[57,53,70],[56,50,68],[52,45,61],[52,46,58],[50,41,53],[48,43,57],[45,41,56],[47,42,56],[49,42,55],[55,49,61],[56,52,65],[60,58,71],[68,65,80],[62,59,76],[73,79,91],[155,170,173],[189,211,213],[200,221,233],[202,222,227],[201,222,224],[204,228,236],[199,227,237],[203,232,238],[205,233,245],[206,230,242],[199,222,228],[202,222,230],[201,224,233],[200,221,226],[200,221,225],[200,221,229],[201,224,232],[194,217,221],[196,215,219],[193,211,214],[192,207,210],[187,207,208],[188,204,204],[181,198,196],[186,187,184],[153,126,114],[161,132,93],[175,156,100],[179,159,105],[175,158,106],[173,154,103],[174,155,106],[175,158,113],[176,159,116],[172,153,111],[170,148,102],[161,137,90],[163,130,90],[137,84,72],[115,49,62],[111,47,61],[109,47,62],[107,46,61],[104,44,59],[105,42,59],[105,43,60],[103,44,60],[102,41,57],[104,41,58],[105,40,57],[156,148,108],[157,144,104],[153,133,96],[144,119,75],[122,95,74],[79,57,39],[153,133,96],[167,154,107],[168,152,108],[165,144,100],[159,133,85],[128,97,71],[128,105,69],[173,159,117],[172,163,118],[170,159,113],[166,149,99],[172,158,113],[178,170,130],[185,179,141],[184,179,143],[181,174,139],[181,172,136],[176,167,128],[173,159,123],[167,151,108],[160,139,96],[138,116,88],[96,78,66],[173,166,135],[185,199,194],[203,233,242],[202,234,247],[204,235,247],[200,230,240],[203,232,242],[203,231,239],[206,228,234],[178,197,198],[190,206,204],[159,177,175],[144,158,162],[62,63,76],[52,44,61],[45,40,55],[45,39,51],[44,37,51],[45,38,49],[45,37,47],[48,39,50],[48,40,53],[44,40,55],[45,42,59],[43,41,60],[43,43,61],[43,45,60],[43,42,62],[49,44,60],[55,46,58],[57,45,61],[66,47,60],[103,72,71],[150,123,105],[179,160,136],[189,175,150],[191,178,152],[193,183,157],[194,186,162],[195,188,166],[195,189,169],[196,190,171],[195,189,169],[194,187,167],[193,182,162],[183,167,150],[117,105,102],[62,54,70],[54,51,68],[53,50,66],[56,51,70],[56,50,69],[53,47,63],[56,50,62],[53,46,58],[48,44,58],[46,43,59],[47,43,59],[48,41,55],[56,50,62],[61,56,70],[60,57,72],[77,74,91],[63,64,81],[74,79,93],[156,170,173],[188,209,212],[203,226,237],[196,218,222],[200,221,223],[205,226,235],[201,226,237],[202,229,236],[206,232,244],[206,229,241],[197,218,225],[203,223,230],[203,222,230],[200,222,226],[198,222,227],[201,226,232],[198,222,229],[194,218,222],[195,214,219],[192,210,213],[193,208,211],[188,208,212],[188,205,204],[182,201,196],[184,189,189],[154,131,127],[159,131,94],[169,151,97],[176,156,103],[176,158,106],[179,159,109],[179,158,113],[178,160,118],[178,161,120],[173,155,114],[172,153,107],[167,145,98],[165,133,92],[142,92,79],[112,49,61],[109,47,61],[108,47,62],[106,45,60],[106,45,61],[106,44,61],[103,43,59],[100,44,58],[98,43,58],[98,41,56],[104,39,57],[155,146,105],[155,142,103],[152,134,98],[144,120,75],[126,100,78],[77,55,37],[144,124,90],[165,151,106],[167,151,107],[164,142,98],[159,134,83],[132,100,75],[120,96,65],[174,161,116],[172,162,122],[171,158,114],[167,148,97],[162,147,96],[172,162,116],[172,162,118],[171,163,122],[167,159,118],[169,158,116],[166,153,110],[166,150,110],[166,146,102],[162,138,92],[137,115,84],[90,73,64],[169,163,142],[193,213,214],[200,230,240],[201,233,246],[203,235,247],[201,231,242],[201,230,240],[199,227,235],[201,226,232],[188,207,208],[191,208,205],[165,180,179],[160,176,178],[70,76,86],[51,47,62],[46,43,57],[45,42,54],[46,40,55],[45,38,50],[45,37,48],[49,38,51],[50,41,55],[47,40,56],[45,42,60],[45,42,63],[42,43,61],[43,45,62],[43,42,63],[49,44,60],[59,49,61],[64,51,66],[68,52,66],[106,78,78],[147,122,106],[172,154,133],[189,175,153],[192,182,159],[193,185,163],[195,189,168],[195,189,170],[195,189,172],[196,191,172],[195,191,172],[195,188,170],[192,181,161],[181,165,152],[94,82,89],[61,53,71],[53,49,66],[55,51,69],[56,51,71],[56,50,70],[53,46,64],[56,50,64],[57,50,61],[49,46,60],[46,43,60],[49,45,63],[47,43,59],[54,49,63],[66,59,75],[57,53,69],[76,74,91],[64,67,86],[71,76,92],[160,172,177],[188,207,210],[205,228,239],[196,218,223],[201,221,224],[205,225,235],[202,225,236],[200,227,233],[207,233,244],[204,227,238],[196,216,223],[203,222,228],[201,222,226],[199,223,227],[199,225,230],[204,229,236],[195,218,226],[197,220,224],[195,214,219],[194,212,215],[193,209,212],[188,207,209],[188,204,203],[184,200,199],[184,191,191],[156,137,131],[159,133,97],[168,150,97],[169,149,97],[171,151,100],[167,145,95],[165,142,95],[164,142,98],[167,146,102],[167,145,100],[160,135,87],[159,132,84],[157,120,82],[131,79,70],[110,49,63],[108,48,60],[107,46,61],[106,45,60],[105,44,60],[103,41,58],[102,43,58],[99,44,58],[98,44,58],[99,42,57],[99,40,55],[159,150,108],[155,143,103],[150,132,96],[142,118,75],[127,101,76],[76,54,38],[134,113,82],[164,148,104],[167,150,106],[163,142,98],[161,135,86],[134,102,78],[114,89,61],[172,158,113],[171,161,122],[171,157,113],[168,151,98],[162,147,93],[177,164,115],[176,164,117],[177,166,120],[172,161,116],[173,160,113],[170,155,106],[168,150,106],[166,145,98],[164,139,91],[141,118,86],[86,68,62],[167,162,147],[198,221,222],[202,231,239],[202,232,244],[201,234,245],[200,230,242],[199,227,238],[199,226,235],[199,225,231],[197,218,220],[194,211,209],[174,187,186],[169,187,186],[88,98,105],[54,52,66],[48,47,60],[44,43,55],[46,42,55],[45,39,52],[44,36,48],[48,38,51],[51,41,55],[48,42,57],[44,41,59],[46,44,64],[41,41,59],[46,48,65],[44,44,64],[49,46,63],[60,51,63],[66,53,67],[68,54,67],[106,79,80],[147,122,108],[172,155,135],[190,177,158],[194,186,166],[194,187,168],[197,191,172],[196,191,172],[197,190,173],[196,192,173],[197,193,174],[196,189,170],[190,178,160],[171,155,144],[81,67,80],[65,56,75],[56,50,68],[56,51,70],[56,51,71],[57,51,71],[53,47,65],[55,50,64],[59,54,65],[51,48,62],[47,45,63],[49,45,65],[47,42,60],[52,45,60],[67,59,75],[59,55,71],[79,78,95],[64,67,87],[69,74,92],[158,170,174],[187,206,209],[206,229,240],[194,218,223],[202,222,226],[204,224,233],[203,226,236],[198,224,229],[206,231,241],[205,226,237],[196,216,220],[200,220,225],[201,224,228],[199,225,230],[201,228,234],[200,224,232],[198,220,228],[200,223,227],[192,212,217],[194,212,215],[193,209,211],[188,207,206],[190,204,204],[187,202,205],[189,195,195],[155,140,130],[156,130,96],[173,155,102],[174,155,102],[176,155,103],[173,150,96],[172,150,98],[168,146,97],[171,147,99],[169,141,93],[168,137,86],[159,126,76],[156,115,78],[122,67,61],[108,46,63],[105,47,60],[106,45,60],[104,44,58],[103,43,58],[101,42,57],[100,42,57],[98,42,56],[97,40,55],[98,41,56],[94,41,55],[158,149,108],[154,142,103],[152,132,97],[140,115,80],[125,100,72],[77,54,46],[124,103,77],[163,146,101],[165,148,106],[160,143,96],[157,132,89],[134,102,78],[107,82,57],[169,154,109],[170,160,116],[171,158,113],[166,151,99],[161,145,93],[177,164,116],[176,163,118],[176,165,120],[171,160,115],[171,158,111],[169,153,103],[164,147,103],[163,145,98],[161,138,92],[144,119,92],[83,68,59],[166,167,159],[201,224,228],[201,230,241],[201,230,241],[202,233,244],[202,233,246],[197,225,237],[202,227,239],[201,225,233],[199,223,227],[193,212,212],[179,192,191],[177,195,193],[111,123,130],[60,59,72],[53,50,64],[47,42,55],[48,42,54],[47,41,53],[46,39,52],[47,39,52],[50,42,56],[47,43,58],[44,42,59],[47,46,63],[44,42,58],[50,49,66],[43,44,62],[47,47,64],[58,51,66],[67,55,68],[71,56,69],[105,79,78],[148,125,110],[174,158,139],[190,178,161],[195,189,170],[196,190,172],[197,192,173],[197,193,176],[198,193,178],[195,193,174],[194,192,172],[193,189,171],[186,177,161],[158,142,135],[75,61,75],[67,57,77],[55,51,67],[54,50,69],[53,49,67],[52,48,65],[51,47,64],[55,51,65],[58,56,66],[50,49,63],[48,46,64],[49,45,66],[48,41,60],[51,43,59],[61,56,70],[63,61,74],[75,74,90],[66,69,91],[69,74,96],[157,169,173],[188,209,209],[205,230,241],[195,220,226],[203,223,227],[201,225,231],[203,228,234],[198,223,227],[205,228,237],[205,225,232],[195,215,216],[199,221,224],[200,225,230],[199,225,232],[202,229,236],[196,220,226],[199,220,227],[198,219,225],[191,210,215],[193,212,215],[194,211,212],[189,208,206],[189,205,207],[188,202,206],[187,196,197],[164,156,150],[155,131,97],[169,149,93],[168,152,96],[173,153,98],[173,148,90],[171,150,93],[170,150,97],[170,148,96],[170,141,91],[168,136,83],[160,125,72],[158,115,79],[117,62,60],[104,45,62],[101,45,59],[101,44,59],[100,43,57],[99,43,56],[97,41,55],[97,41,55],[96,39,54],[95,39,54],[95,39,54],[95,41,55],[160,148,107],[154,138,100],[152,131,95],[141,116,81],[124,100,72],[80,58,50],[114,92,69],[163,145,103],[164,148,108],[159,143,97],[154,133,88],[129,101,74],[99,76,50],[163,149,103],[169,159,113],[171,156,113],[167,150,101],[161,143,96],[178,163,119],[176,163,118],[177,165,122],[172,161,117],[172,159,113],[169,153,105],[165,148,105],[161,143,96],[161,137,92],[144,120,93],[82,68,61],[165,170,166],[201,227,235],[202,231,245],[199,227,239],[199,228,240],[201,232,245],[198,227,239],[198,225,236],[200,225,234],[202,227,232],[193,214,215],[181,195,194],[182,200,199],[126,138,145],[67,66,79],[56,54,67],[48,43,56],[47,41,53],[48,42,54],[48,41,53],[46,38,51],[49,41,55],[47,43,58],[45,43,60],[47,46,64],[46,43,59],[48,47,64],[46,46,64],[46,46,64],[57,51,67],[67,55,70],[75,60,71],[109,83,81],[151,129,113],[176,163,143],[188,180,162],[194,189,170],[196,192,173],[197,193,175],[197,194,177],[199,194,179],[197,194,177],[195,193,174],[192,188,172],[187,177,163],[143,129,124],[71,58,72],[67,57,75],[54,50,66],[52,48,67],[52,48,66],[51,47,64],[52,48,64],[53,49,64],[57,54,68],[51,49,66],[49,47,67],[50,47,67],[48,42,61],[53,46,62],[55,51,65],[65,64,78],[70,70,88],[66,69,92],[68,74,96],[151,165,170],[190,211,210],[204,230,241],[198,224,231],[201,222,225],[203,228,234],[205,231,238],[196,221,225],[201,225,232],[206,225,231],[194,214,214],[199,220,224],[199,224,229],[198,225,232],[202,228,235],[196,220,227],[201,221,227],[194,215,220],[191,211,215],[195,214,216],[195,213,215],[191,208,208],[191,204,207],[187,201,205],[186,199,200],[181,182,176],[160,142,109],[170,149,94],[170,151,96],[172,150,97],[173,148,91],[171,149,93],[171,150,97],[167,145,93],[168,141,90],[169,136,86],[162,124,76],[158,114,80],[111,61,53],[101,48,55],[98,46,53],[96,43,58],[94,41,59],[94,42,58],[93,42,55],[93,42,55],[93,42,55],[93,42,54],[93,41,54],[94,40,54],[157,148,110],[151,137,100],[147,127,90],[142,116,80],[126,101,72],[82,60,53],[106,84,65],[162,143,107],[162,144,108],[161,140,101],[156,132,94],[127,98,75],[97,71,50],[161,143,104],[168,155,113],[170,154,112],[166,148,101],[159,140,95],[176,161,117],[174,162,119],[174,162,120],[171,159,116],[171,158,114],[169,152,107],[163,146,102],[161,143,95],[160,137,94],[145,121,95],[81,71,63],[164,175,174],[199,228,239],[200,228,243],[200,227,239],[196,225,236],[200,230,244],[200,230,242],[196,224,235],[201,228,238],[203,228,235],[196,216,219],[185,199,200],[186,204,204],[131,143,150],[68,67,80],[58,56,69],[51,46,59],[48,42,54],[49,43,55],[49,41,54],[47,39,52],[49,41,55],[47,43,58],[45,43,59],[47,46,63],[48,46,62],[47,44,60],[48,48,66],[48,48,67],[55,50,67],[65,54,70],[78,61,72],[114,87,85],[154,133,118],[175,166,147],[189,182,164],[193,188,169],[196,192,174],[197,194,177],[198,195,179],[200,195,180],[198,195,180],[197,194,180],[194,190,176],[187,178,165],[132,119,119],[73,61,76],[64,56,72],[54,50,65],[51,47,65],[52,47,66],[50,46,63],[52,48,65],[54,50,65],[60,57,76],[50,49,70],[47,47,68],[49,47,67],[48,43,61],[51,47,62],[50,47,62],[64,63,81],[67,68,89],[64,68,92],[68,74,99],[148,161,169],[191,213,212],[201,228,238],[200,227,235],[198,220,223],[203,230,235],[206,232,241],[199,224,226],[200,222,228],[205,224,229],[193,213,213],[199,218,224],[198,222,228],[201,228,235],[197,224,231],[203,227,233],[204,223,229],[192,211,214],[194,213,215],[194,214,215],[191,211,212],[191,208,208],[191,203,206],[188,203,206],[184,201,201],[185,194,190],[171,162,135],[167,146,97],[168,145,93],[169,147,95],[167,142,87],[170,144,91],[166,141,92],[165,141,92],[167,142,93],[168,137,83],[159,124,72],[160,121,79],[136,96,71],[131,92,77],[126,85,75],[101,57,58],[92,45,56],[91,43,56],[92,42,56],[91,40,55],[92,41,56],[92,41,56],[92,40,55],[92,39,55],[128,123,102],[132,121,98],[139,120,95],[132,105,78],[124,97,73],[86,64,57],[105,82,66],[158,139,106],[163,145,113],[159,141,110],[148,130,98],[125,103,85],[97,76,62],[149,134,103],[165,151,114],[167,150,111],[166,146,101],[157,138,92],[171,155,112],[173,160,117],[174,162,121],[169,157,115],[170,157,113],[166,149,105],[160,143,100],[156,139,90],[159,135,92],[142,118,94],[92,84,74],[174,189,188],[196,229,240],[200,228,240],[201,225,237],[195,222,235],[200,231,244],[201,232,243],[198,227,237],[202,228,240],[203,230,238],[199,220,224],[187,202,204],[189,207,208],[138,150,157],[67,67,79],[61,59,72],[53,48,61],[51,45,57],[50,44,56],[48,41,53],[47,39,52],[50,42,56],[49,45,60],[46,44,61],[44,43,60],[49,46,62],[47,44,60],[51,49,67],[49,49,69],[54,48,68],[62,51,69],[79,61,72],[121,95,93],[158,139,123],[179,171,152],[190,185,167],[192,189,171],[196,193,176],[197,195,178],[198,196,181],[201,196,180],[198,195,182],[196,193,181],[195,191,178],[185,177,164],[121,110,112],[74,63,78],[65,57,72],[54,50,64],[50,45,63],[51,46,65],[49,45,62],[50,46,63],[54,50,66],[62,59,81],[54,53,75],[48,49,70],[49,47,67],[49,46,63],[54,51,66],[47,45,61],[56,57,76],[67,69,93],[64,69,95],[66,72,99],[143,157,166],[195,218,217],[198,225,234],[203,230,240],[196,219,221],[203,230,235],[204,231,241],[202,227,230],[197,219,223],[204,223,228],[192,210,211],[197,216,222],[197,221,227],[201,228,235],[195,221,228],[205,229,235],[198,218,223],[191,210,211],[195,215,216],[193,213,214],[190,210,211],[189,208,208],[190,205,205],[188,204,204],[184,202,203],[186,196,198],[178,174,157],[164,141,99],[165,138,90],[166,144,93],[167,142,90],[166,138,91],[166,138,94],[164,137,94],[165,141,94],[164,136,85],[156,123,73],[156,122,79],[141,111,77],[138,112,82],[141,112,82],[138,104,81],[107,65,58],[92,44,53],[93,41,56],[91,40,55],[91,40,55],[92,40,56],[91,40,55],[91,38,54],[57,55,57],[60,54,54],[88,74,67],[120,94,79],[118,89,68],[83,65,55],[85,72,58],[144,123,96],[146,130,105],[135,125,107],[112,102,88],[89,78,72],[70,60,57],[89,81,71],[117,110,87],[146,131,99],[154,134,92],[151,130,88],[164,150,107],[169,159,114],[173,161,118],[169,155,114],[171,154,114],[167,149,107],[163,143,101],[160,138,96],[156,130,94],[144,118,96],[95,87,80],[180,199,201],[200,230,241],[201,229,241],[199,225,235],[196,221,232],[200,227,240],[203,232,243],[198,229,239],[199,226,237],[203,230,241],[198,222,228],[186,204,204],[191,208,207],[148,158,164],[73,72,84],[63,61,74],[57,52,64],[52,46,59],[51,45,57],[47,41,53],[46,39,51],[49,43,55],[49,46,60],[49,47,63],[44,41,58],[49,47,61],[47,45,59],[49,45,63],[52,50,71],[50,47,65],[62,51,68],[83,63,73],[125,99,96],[161,144,128],[182,174,158],[192,185,171],[194,191,175],[195,194,178],[196,196,180],[198,197,181],[200,197,181],[199,196,182],[196,195,182],[195,192,180],[180,173,163],[121,110,112],[75,63,78],[65,57,72],[55,49,64],[52,45,62],[52,45,62],[51,45,61],[51,45,61],[55,51,67],[62,60,83],[56,56,82],[49,51,73],[48,49,66],[52,50,63],[57,53,68],[49,48,64],[50,51,71],[64,67,90],[65,71,96],[64,71,95],[136,151,161],[195,219,221],[195,224,232],[207,233,244],[196,218,224],[204,230,233],[204,231,242],[203,229,236],[193,216,219],[203,222,225],[191,210,210],[195,216,218],[200,224,228],[197,224,231],[199,226,233],[204,226,230],[190,210,211],[190,211,211],[195,216,217],[193,214,215],[191,211,212],[190,209,210],[188,206,207],[188,204,206],[186,202,205],[184,197,201],[182,183,174],[162,142,107],[162,132,91],[164,139,94],[162,139,91],[162,136,92],[163,137,98],[157,130,93],[162,135,96],[159,127,81],[150,118,71],[135,104,71],[120,94,62],[150,128,84],[151,128,86],[149,125,86],[146,118,88],[111,73,63],[90,44,51],[91,40,54],[93,40,57],[91,40,56],[91,40,54],[91,38,54],[45,44,51],[44,41,45],[53,44,41],[94,74,62],[109,84,67],[80,67,56],[68,60,50],[130,112,93],[104,91,77],[75,69,67],[68,62,66],[62,57,65],[54,50,58],[56,52,60],[59,52,57],[86,71,64],[132,111,88],[136,114,79],[155,139,98],[167,155,112],[171,159,116],[166,153,110],[168,152,110],[164,148,105],[159,143,99],[155,136,96],[150,127,94],[137,115,94],[99,94,89],[189,210,214],[201,231,242],[202,231,241],[198,226,235],[196,221,232],[196,222,233],[202,231,242],[198,228,239],[200,226,237],[203,231,242],[199,226,232],[186,206,205],[190,208,206],[150,160,165],[77,76,88],[64,62,75],[59,54,66],[50,44,58],[51,45,57],[48,42,54],[46,40,52],[48,43,54],[51,47,61],[51,47,64],[45,42,59],[46,44,58],[50,49,62],[50,44,62],[53,50,72],[51,49,66],[62,52,67],[84,63,72],[127,103,98],[163,149,132],[186,179,162],[191,184,171],[194,192,177],[194,194,179],[196,197,181],[199,197,182],[198,196,181],[196,196,180],[196,195,181],[195,190,178],[180,171,162],[122,110,112],[76,64,80],[64,54,70],[54,47,62],[53,44,61],[53,45,62],[48,41,57],[51,45,61],[55,51,67],[62,61,85],[56,57,82],[48,49,72],[49,51,67],[55,53,66],[59,56,70],[50,49,65],[46,46,67],[62,64,86],[65,69,95],[67,74,96],[129,143,154],[195,219,222],[195,224,233],[208,235,246],[197,219,227],[201,225,227],[205,232,242],[205,231,241],[194,216,221],[203,223,223],[190,210,209],[194,215,214],[202,224,228],[197,223,229],[203,229,235],[196,218,220],[191,210,211],[194,215,216],[195,216,217],[193,213,214],[192,212,213],[191,210,211],[188,206,208],[188,204,207],[186,201,204],[184,198,201],[184,190,184],[161,148,118],[158,133,93],[156,134,90],[151,134,88],[153,134,93],[148,128,90],[140,119,83],[142,119,83],[143,113,79],[132,104,69],[100,74,53],[88,65,45],[135,114,73],[155,132,85],[152,131,85],[152,130,86],[153,123,92],[119,84,73],[88,46,47],[88,40,51],[88,39,54],[89,40,53],[91,39,53],[44,43,49],[44,42,47],[46,39,42],[68,54,52],[78,62,57],[64,54,53],[58,50,51],[74,60,60],[58,47,49],[56,49,48],[57,50,48],[57,51,49],[57,52,50],[56,52,49],[55,49,48],[62,49,45],[95,77,63],[113,94,62],[131,115,76],[154,141,102],[162,153,111],[159,151,106],[159,150,105],[159,150,104],[155,144,101],[144,132,94],[134,120,87],[121,107,83],[107,108,101],[193,217,221],[200,229,241],[200,230,239],[201,229,239],[198,224,235],[194,218,228],[199,226,236],[199,227,238],[201,226,237],[201,229,238],[201,228,233],[188,208,209],[191,210,210],[141,151,157],[83,83,95],[64,63,76],[59,54,67],[51,45,59],[51,45,59],[48,42,55],[47,41,53],[49,43,56],[55,48,63],[55,50,64],[48,44,61],[44,41,59],[51,50,64],[52,47,65],[49,46,65],[52,50,67],[61,51,67],[85,66,73],[134,111,105],[165,153,135],[186,181,163],[193,189,174],[194,192,177],[195,196,180],[197,197,181],[198,196,181],[197,197,181],[197,197,181],[196,195,180],[194,187,173],[184,172,162],[122,110,112],[76,63,79],[62,52,68],[54,47,61],[53,45,61],[54,46,62],[49,42,58],[51,45,61],[54,50,66],[62,60,81],[54,54,77],[47,49,70],[49,49,66],[57,54,69],[60,57,72],[50,48,66],[47,48,67],[59,60,82],[62,65,89],[65,71,92],[124,137,146],[196,218,223],[197,225,234],[206,234,245],[199,222,231],[197,220,223],[205,231,239],[205,232,241],[197,220,225],[201,220,221],[189,208,207],[194,213,212],[199,222,225],[202,227,231],[203,226,230],[189,209,211],[193,213,213],[196,217,218],[194,214,215],[193,212,213],[192,211,213],[190,208,210],[188,206,208],[188,204,207],[187,202,205],[184,199,202],[183,195,191],[169,166,143],[163,150,112],[162,150,105],[159,149,106],[155,145,106],[151,140,103],[142,129,94],[142,130,92],[152,137,93],[147,133,87],[138,124,87],[131,119,82],[139,127,83],[149,133,91],[148,135,91],[148,135,88],[150,133,93],[148,127,96],[123,94,78],[88,46,50],[87,39,52],[89,38,53],[90,38,51],[102,102,77],[101,100,75],[102,100,73],[109,104,76],[109,105,75],[109,106,76],[112,106,79],[122,117,91],[123,120,94],[128,122,95],[126,120,91],[124,118,88],[120,115,87],[124,119,92],[131,128,96],[137,132,103],[144,136,107],[146,138,103],[155,146,108],[162,155,118],[163,159,120],[165,162,122],[166,161,121],[165,161,121],[163,159,122],[162,158,124],[160,155,122],[157,153,125],[157,165,153],[197,222,227],[199,229,243],[198,229,239],[200,229,241],[201,225,238],[196,220,228],[194,220,230],[200,227,239],[202,225,236],[198,225,233],[200,228,232],[188,209,212],[190,210,211],[132,143,150],[81,81,94],[68,67,81],[59,55,68],[52,46,61],[51,45,59],[48,42,56],[47,41,54],[48,41,54],[55,47,62],[56,50,63],[51,48,63],[45,42,62],[49,47,65],[53,48,65],[52,49,66],[55,53,69],[57,47,65],[84,67,75],[132,112,107],[167,156,139],[184,180,164],[190,187,174],[191,190,175],[195,196,180],[198,197,181],[199,196,181],[200,198,183],[198,197,182],[197,194,178],[193,186,171],[180,170,158],[127,114,115],[77,63,78],[65,54,70],[57,48,62],[53,45,61],[54,46,63],[48,41,57],[50,44,59],[54,50,66],[60,58,78],[54,53,74],[47,47,67],[50,49,69],[60,57,74],[63,60,77],[50,49,66],[48,47,66],[56,57,77],[63,64,86],[65,69,89],[116,127,137],[198,218,223],[197,224,233],[204,233,244],[203,226,238],[192,214,219],[203,228,235],[203,230,240],[199,222,227],[198,217,219],[190,206,205],[195,212,212],[198,219,221],[206,228,231],[193,214,215],[191,210,210],[195,214,214],[195,215,216],[193,213,214],[193,211,213],[191,209,211],[190,208,210],[187,205,207],[187,203,206],[187,202,205],[185,200,203],[181,196,194],[175,179,167],[173,169,138],[173,167,130],[171,168,131],[171,168,131],[169,164,130],[169,164,129],[168,162,126],[168,162,125],[168,161,125],[166,160,125],[166,159,127],[164,158,124],[163,157,123],[161,157,123],[161,158,117],[161,158,119],[162,153,116],[161,140,119],[107,69,71],[89,38,53],[92,37,52],[91,39,51],[139,136,104],[142,139,105],[144,142,106],[147,145,107],[145,145,107],[148,147,109],[153,147,110],[152,150,115],[154,154,115],[156,155,116],[157,155,116],[157,157,116],[158,158,121],[159,157,124],[161,159,126],[162,162,125],[163,164,125],[164,165,127],[166,165,128],[168,167,129],[166,167,130],[168,167,133],[171,168,134],[171,169,136],[171,170,138],[172,172,142],[171,171,139],[171,172,142],[173,185,169],[199,225,229],[199,228,244],[199,228,241],[200,228,242],[201,225,238],[199,222,230],[193,217,226],[197,221,233],[202,224,236],[196,223,229],[199,226,230],[189,211,214],[194,214,217],[128,140,147],[83,83,96],[68,68,82],[59,56,70],[54,48,64],[51,45,60],[49,43,57],[48,42,56],[48,41,54],[57,48,62],[59,53,65],[54,50,66],[48,46,66],[46,44,62],[54,49,66],[52,49,66],[53,52,68],[59,50,68],[71,55,66],[131,111,110],[171,160,147],[180,178,163],[189,187,174],[191,191,175],[194,194,178],[197,196,181],[198,194,179],[202,196,183],[200,197,182],[196,193,177],[191,186,169],[181,173,157],[129,115,115],[80,66,80],[67,55,69],[59,50,63],[55,46,62],[55,48,64],[50,43,59],[50,43,59],[57,52,68],[53,50,68],[53,52,70],[46,46,65],[49,47,68],[56,54,73],[64,63,79],[50,50,67],[48,47,65],[54,53,74],[60,61,81],[65,68,87],[106,116,126],[198,217,223],[196,222,232],[205,235,245],[204,229,240],[192,213,218],[198,223,228],[202,229,237],[202,225,230],[197,215,217],[189,205,204],[194,210,209],[200,220,222],[199,219,220],[188,207,207],[194,212,212],[196,214,215],[194,214,215],[194,213,215],[192,210,212],[191,209,211],[190,208,210],[187,205,207],[187,204,206],[187,202,205],[184,200,202],[180,195,195],[178,184,180],[170,169,145],[171,166,137],[168,165,135],[167,165,132],[166,163,132],[167,164,131],[166,163,128],[166,163,131],[166,162,131],[167,163,128],[166,161,130],[165,159,131],[164,159,128],[161,157,126],[159,157,120],[156,155,119],[158,153,118],[156,137,120],[105,66,71],[91,38,52],[95,38,52],[92,40,52],[136,131,99],[133,132,98],[136,135,101],[137,135,101],[141,137,104],[140,140,105],[142,142,107],[144,144,107],[144,144,107],[148,146,107],[151,149,109],[152,149,111],[152,150,112],[155,152,115],[153,152,113],[155,154,115],[156,156,117],[158,158,120],[160,159,123],[159,158,124],[161,159,127],[161,161,128],[161,162,129],[161,162,129],[162,162,131],[163,163,133],[164,164,136],[165,166,140],[173,185,171],[197,225,227],[198,230,240],[201,228,243],[200,227,242],[201,228,240],[199,225,233],[194,218,224],[194,217,224],[199,222,232],[198,223,229],[199,223,227],[190,212,214],[196,213,214],[140,152,156],[85,91,101],[67,66,81],[61,57,73],[52,50,64],[52,48,61],[49,43,57],[47,43,55],[44,40,51],[55,49,61],[59,55,66],[54,51,66],[51,48,67],[46,42,60],[53,49,65],[51,49,63],[52,49,65],[57,52,70],[65,52,68],[106,92,96],[164,154,146],[181,177,165],[186,186,173],[193,192,178],[198,194,180],[198,195,180],[195,195,177],[200,196,181],[200,198,181],[196,195,177],[192,189,172],[180,173,156],[140,124,118],[97,77,87],[71,58,70],[62,51,62],[57,47,60],[57,49,63],[52,43,60],[51,42,59],[58,50,65],[55,48,64],[54,50,67],[47,46,64],[47,45,63],[57,54,72],[65,64,81],[48,49,67],[45,46,64],[52,53,72],[60,57,80],[65,66,87],[92,101,111],[192,211,217],[194,220,230],[204,232,241],[203,228,239],[194,211,217],[197,215,218],[201,226,230],[202,225,229],[195,213,215],[185,201,200],[188,207,203],[199,219,217],[191,210,209],[193,210,210],[200,215,217],[195,212,214],[196,214,216],[193,211,213],[191,209,211],[190,208,210],[187,205,207],[186,204,206],[187,204,206],[186,201,204],[184,199,202],[181,196,197],[181,187,184],[161,162,143],[158,154,127],[158,154,127],[156,152,125],[154,150,121],[153,149,120],[152,148,118],[147,146,115],[144,142,111],[147,143,112],[148,143,113],[145,140,111],[144,142,113],[140,139,109],[137,136,105],[134,133,102],[137,131,105],[115,88,81],[91,47,52],[88,41,47],[91,39,51],[94,38,55],[128,128,96],[127,129,96],[128,130,98],[130,131,99],[134,134,103],[137,138,106],[138,139,107],[139,140,106],[143,144,110],[144,146,111],[144,146,111],[147,148,115],[148,150,117],[149,150,118],[149,152,118],[152,155,122],[154,157,125],[156,159,128],[157,160,129],[159,161,130],[159,161,132],[160,164,135],[161,165,136],[161,165,138],[161,165,140],[163,166,143],[165,168,147],[166,170,150],[176,190,180],[197,225,232],[197,230,242],[201,227,244],[199,226,240],[198,225,238],[199,225,235],[197,221,228],[191,215,220],[196,218,226],[197,222,227],[199,224,226],[191,213,214],[193,210,211],[156,168,171],[94,101,111],[67,67,82],[62,58,75],[53,51,65],[53,50,64],[49,44,58],[45,40,54],[44,41,53],[50,45,57],[58,55,66],[56,53,67],[54,51,69],[47,43,62],[49,45,61],[51,47,61],[55,51,66],[56,51,68],[65,54,70],[86,72,80],[142,131,128],[178,173,163],[186,186,173],[192,193,179],[195,194,179],[196,196,180],[195,197,178],[199,199,182],[198,198,180],[199,197,179],[192,186,168],[180,170,152],[152,135,123],[117,96,100],[74,61,74],[63,53,68],[55,48,59],[56,49,63],[51,44,60],[50,43,59],[58,51,65],[57,50,65],[53,49,66],[48,45,64],[49,46,63],[57,55,73],[64,63,84],[51,50,68],[48,47,64],[52,52,67],[56,55,75],[65,65,86],[84,91,102],[188,206,212],[194,218,227],[202,229,236],[203,227,239],[194,211,218],[193,212,214],[197,221,224],[201,223,226],[195,215,216],[185,201,200],[185,203,199],[191,211,209],[189,207,207],[195,213,213],[196,212,214],[195,212,214],[195,213,215],[192,210,212],[190,208,210],[189,207,209],[188,206,208],[187,205,207],[188,204,207],[186,201,204],[185,200,203],[181,196,199],[182,189,190],[169,171,156],[164,162,139],[165,161,136],[164,161,135],[163,160,133],[162,159,131],[160,158,129],[158,159,131],[159,159,131],[160,159,131],[161,157,131],[159,157,131],[158,158,132],[157,157,130],[157,157,129],[156,156,127],[159,150,130],[107,74,75],[89,39,52],[89,38,51],[91,37,54],[94,36,53],[143,149,115],[145,150,116],[145,150,118],[147,152,120],[149,153,122],[152,154,123],[153,156,124],[153,156,124],[155,158,125],[155,160,128],[157,163,130],[160,166,135],[161,167,136],[162,168,138],[163,169,140],[165,170,142],[166,172,145],[168,173,147],[169,174,147],[170,176,148],[171,178,151],[171,179,153],[173,180,156],[172,180,159],[172,180,159],[173,181,162],[174,182,165],[174,183,167],[183,198,194],[198,224,235],[196,228,242],[203,230,247],[200,228,241],[198,224,237],[197,223,235],[198,222,229],[192,216,219],[192,214,219],[196,220,223],[200,223,224],[193,213,214],[190,207,206],[164,177,179],[96,102,113],[67,67,84],[62,58,77],[53,52,67],[52,49,64],[48,44,58],[46,42,56],[43,40,53],[46,43,56],[60,56,68],[60,56,70],[56,52,69],[49,45,64],[47,43,59],[52,47,61],[54,49,63],[58,51,67],[64,55,72],[72,59,73],[109,95,100],[165,157,151],[187,185,173],[191,193,178],[192,195,178],[195,197,180],[196,197,179],[198,199,181],[198,199,181],[198,197,178],[192,185,167],[180,168,151],[162,143,127],[137,115,110],[80,65,79],[67,56,73],[58,50,62],[55,49,62],[50,44,59],[49,42,58],[56,50,64],[59,52,66],[58,51,68],[49,45,62],[47,44,61],[54,54,71],[64,64,85],[53,52,71],[47,45,62],[51,49,64],[53,52,71],[64,62,83],[75,79,92],[181,196,202],[196,218,225],[197,223,231],[204,230,242],[194,213,220],[191,208,209],[194,215,216],[200,221,224],[197,216,219],[181,198,198],[188,204,199],[188,206,205],[193,211,211],[197,215,215],[194,212,213],[194,212,214],[193,211,213],[193,211,213],[191,209,211],[190,208,210],[188,206,208],[186,204,206],[187,203,206],[186,201,204],[184,199,202],[181,197,200],[181,191,194],[172,177,166],[166,165,145],[166,163,140],[165,163,138],[164,162,137],[162,161,134],[163,162,134],[161,162,135],[160,160,134],[160,160,134],[160,159,133],[159,159,134],[159,159,134],[158,158,132],[157,157,131],[156,156,129],[158,149,127],[110,75,75],[93,40,52],[93,40,52],[92,38,53],[91,36,50],[141,149,110],[145,150,114],[146,150,116],[144,149,117],[147,153,120],[147,152,119],[148,154,120],[150,156,121],[152,157,122],[153,160,126],[156,163,129],[158,165,132],[159,166,134],[160,167,135],[162,168,139],[164,170,143],[165,171,145],[167,173,147],[167,173,147],[169,176,150],[169,178,151],[173,181,157],[171,181,156],[172,182,159],[172,182,161],[173,184,164],[174,184,166],[173,184,169],[182,201,197],[198,224,235],[196,226,239],[197,225,239],[200,227,239],[198,225,237],[197,221,235],[198,222,229],[193,216,218],[191,212,214],[192,216,216],[197,220,220],[195,215,216],[189,205,204],[171,183,185],[94,101,111],[69,68,85],[61,56,77],[55,55,71],[53,50,65],[49,45,60],[45,42,56],[44,42,55],[42,40,54],[58,55,67],[61,56,70],[59,53,69],[52,49,67],[49,45,61],[53,48,62],[59,51,64],[60,52,67],[57,50,67],[67,54,73],[89,74,86],[132,121,119],[185,180,169],[192,191,177],[192,194,177],[194,195,179],[198,197,179],[200,198,180],[200,199,179],[198,197,177],[189,185,166],[181,172,154],[170,153,134],[145,125,114],[90,74,87],[70,57,73],[64,54,65],[57,50,63],[53,45,62],[51,43,59],[57,50,65],[59,53,66],[57,48,66],[50,43,61],[47,45,60],[52,52,68],[61,61,80],[53,51,70],[48,45,64],[52,48,67],[50,49,66],[66,64,85],[68,69,83],[165,178,183],[193,215,220],[193,218,225],[205,231,245],[195,215,223],[188,204,205],[191,211,210],[198,219,221],[198,217,222],[183,199,201],[190,204,201],[190,205,205],[198,215,215],[196,215,214],[191,211,211],[192,211,213],[193,211,213],[193,211,213],[191,209,211],[189,207,209],[188,206,208],[186,204,206],[186,202,205],[185,200,203],[183,199,201],[179,197,198],[180,192,195],[173,180,170],[165,165,145],[165,163,141],[163,163,139],[162,162,138],[162,162,136],[161,161,135],[161,160,135],[160,159,134],[160,159,134],[160,158,133],[159,158,133],[158,157,131],[156,156,129],[156,156,128],[155,154,126],[157,149,127],[110,76,74],[94,40,51],[92,38,49],[91,39,52],[89,38,50],[140,147,108],[142,147,110],[145,149,114],[145,150,115],[144,151,116],[145,151,116],[148,152,117],[151,155,120],[153,159,124],[153,160,125],[155,162,127],[157,164,130],[159,165,133],[161,167,136],[163,170,139],[163,170,140],[164,170,142],[167,173,146],[168,174,147],[169,174,149],[169,177,152],[171,179,155],[171,179,156],[172,182,160],[173,184,162],[175,185,166],[175,185,167],[174,186,170],[183,202,198],[196,222,233],[197,227,238],[195,223,235],[195,222,234],[197,224,236],[198,223,236],[196,220,228],[196,219,224],[194,215,216],[189,212,212],[195,218,217],[194,216,214],[187,204,201],[178,190,190],[100,107,117],[66,67,85],[62,57,80],[54,53,71],[50,47,64],[52,48,63],[46,43,57],[45,42,56],[41,39,52],[53,50,62],[63,57,71],[63,56,72],[55,50,68],[50,46,63],[52,46,61],[63,54,68],[73,61,76],[63,55,70],[64,54,72],[73,61,75],[106,95,96],[173,165,155],[192,189,174],[194,193,176],[195,194,176],[200,195,178],[200,196,177],[199,197,177],[198,195,175],[191,187,167],[182,174,155],[174,158,138],[156,138,122],[109,92,99],[76,61,74],[69,58,69],[58,49,64],[53,45,62],[52,43,61],[57,49,65],[62,55,70],[58,48,66],[51,42,59],[49,44,59],[52,51,66],[57,58,74],[52,51,69],[49,45,64],[52,47,67],[50,49,66],[63,62,81],[67,66,82],[130,140,147],[189,211,213],[188,213,218],[203,229,241],[196,217,226],[187,203,205],[189,208,206],[196,216,217],[198,218,223],[187,203,206],[186,198,198],[192,207,206],[198,215,215],[195,213,214],[195,214,214],[195,213,214],[193,211,212],[191,209,210],[189,207,208],[188,206,207],[188,206,208],[186,204,206],[186,203,205],[185,200,203],[183,199,201],[180,197,197],[179,193,194],[173,181,173],[164,165,146],[164,164,142],[162,163,141],[162,161,139],[162,161,138],[162,161,137],[163,161,137],[162,160,135],[160,159,133],[161,160,133],[160,160,133],[157,157,130],[158,157,130],[155,155,127],[157,156,127],[157,150,128],[105,73,74],[92,39,53],[90,36,50],[90,37,52],[86,37,48],[141,147,112],[141,147,111],[141,147,112],[144,150,114],[144,150,114],[146,150,115],[149,150,116],[152,153,120],[152,157,123],[153,159,125],[154,160,127],[157,162,131],[159,164,135],[161,166,138],[161,168,138],[163,169,141],[166,172,144],[167,173,146],[167,173,147],[169,176,151],[169,177,154],[172,180,157],[171,180,159],[171,183,163],[173,185,165],[174,186,168],[175,186,169],[175,188,172],[183,202,198],[196,222,234],[196,226,239],[197,225,238],[195,223,235],[192,219,230],[196,222,232],[197,221,230],[197,219,226],[195,215,217],[190,211,212],[193,215,213],[191,215,212],[189,208,205],[184,199,198],[110,120,129],[64,67,86],[62,58,81],[53,52,72],[50,47,64],[52,48,63],[49,46,60],[44,41,56],[41,37,51],[49,45,57],[62,56,69],[64,57,72],[59,52,70],[50,45,61],[54,47,63],[65,53,69],[83,68,84],[73,61,74],[62,53,70],[66,58,72],[82,70,75],[142,132,126],[188,184,169],[194,192,173],[196,194,173],[201,195,177],[199,197,176],[199,198,177],[197,194,173],[191,186,166],[182,174,155],[176,161,141],[161,145,127],[126,109,107],[81,66,76],[75,62,75],[60,51,65],[53,46,62],[51,43,61],[51,43,60],[60,52,68],[57,48,65],[52,44,59],[51,44,58],[50,47,62],[57,55,73],[51,48,66],[48,45,63],[51,47,64],[49,47,65],[56,56,74],[66,64,83],[90,97,109],[181,204,207],[183,207,211],[202,229,237],[196,219,226],[186,204,206],[186,205,204],[193,214,215],[197,218,221],[188,206,208],[183,195,197],[194,210,208],[198,216,216],[194,213,214],[194,212,213],[194,211,210],[190,209,208],[190,208,208],[189,207,207],[189,207,209],[188,206,208],[186,204,206],[185,201,204],[184,199,202],[182,198,200],[178,195,194],[179,193,194],[176,185,180],[164,166,150],[163,164,143],[160,162,141],[162,163,142],[162,161,140],[161,160,139],[161,160,138],[161,161,137],[160,160,136],[159,159,135],[158,159,133],[156,159,131],[155,155,128],[156,156,127],[155,155,126],[157,150,128],[106,75,76],[88,38,52],[88,36,49],[86,35,49],[84,35,48],[142,148,114],[142,148,114],[144,150,116],[144,150,116],[145,151,117],[145,151,116],[147,151,118],[150,153,121],[152,158,125],[154,160,127],[156,161,129],[157,162,132],[161,165,137],[161,165,138],[163,169,141],[164,170,142],[167,173,146],[167,173,147],[168,175,149],[168,176,152],[170,178,154],[172,181,159],[174,183,162],[173,185,165],[175,187,167],[173,185,167],[175,186,169],[175,188,172],[183,202,198],[196,222,233],[195,226,238],[197,224,237],[197,224,236],[195,222,232],[191,218,225],[192,217,222],[194,217,221],[195,214,216],[192,212,213],[192,213,212],[192,214,212],[188,209,205],[183,201,200],[118,132,140],[65,71,88],[62,60,81],[55,54,74],[49,46,63],[53,49,63],[50,47,61],[42,39,53],[41,37,52],[45,41,54],[57,51,64],[63,57,72],[61,54,70],[53,46,62],[54,47,62],[63,50,65],[85,68,82],[85,71,82],[68,57,72],[66,57,70],[70,58,65],[103,91,87],[186,179,165],[194,190,171],[195,193,172],[200,195,175],[198,195,175],[199,197,176],[197,193,173],[197,192,172],[187,181,161],[178,168,148],[168,155,134],[139,123,118],[88,73,79],[77,64,74],[62,51,65],[56,48,64],[53,47,64],[52,45,61],[59,51,67],[57,47,64],[53,44,60],[50,43,57],[49,46,61],[56,53,69],[50,47,64],[48,45,62],[51,47,65],[49,46,65],[53,53,73],[61,59,81],[65,69,90],[150,168,181],[179,202,206],[201,227,234],[196,220,226],[189,208,210],[182,201,200],[191,212,213],[197,217,221],[191,209,211],[179,193,195],[193,208,207],[191,209,209],[191,210,212],[193,211,212],[193,209,209],[191,209,209],[192,210,210],[189,207,208],[187,205,207],[185,203,205],[183,201,203],[184,200,203],[184,199,202],[182,198,199],[180,196,196],[179,194,195],[178,187,184],[162,166,152],[160,163,142],[160,162,141],[160,162,141],[161,161,139],[159,158,137],[160,159,138],[159,158,136],[160,160,137],[160,160,136],[157,158,132],[155,158,129],[155,155,127],[154,155,125],[155,154,124],[156,149,127],[108,78,78],[84,37,51],[84,38,50],[82,37,49],[82,36,49],[139,146,112],[140,147,113],[141,148,114],[144,151,117],[147,155,121],[147,154,120],[151,155,123],[152,157,126],[154,161,129],[156,161,129],[157,162,131],[159,164,135],[161,165,138],[162,166,141],[164,170,142],[166,172,145],[167,173,146],[169,175,149],[169,176,152],[170,178,154],[171,180,156],[173,182,161],[174,184,164],[174,186,166],[174,186,166],[167,178,160],[171,182,165],[171,184,168],[183,202,198],[195,221,233],[198,229,241],[198,225,238],[194,222,234],[194,221,232],[195,221,229],[192,216,222],[190,213,217],[193,212,214],[190,210,211],[193,214,212],[193,215,213],[190,211,208],[185,204,204],[112,126,135],[63,68,84],[64,62,83],[56,55,74],[50,48,64],[54,50,65],[50,47,61],[42,40,55],[42,38,54],[44,40,54],[54,48,62],[63,56,72],[65,57,73],[56,50,64],[57,48,61],[64,51,63],[77,59,72],[88,70,82],[80,67,81],[65,54,67],[70,57,67],[86,69,71],[177,164,154],[194,188,170],[194,191,170],[197,193,172],[199,194,174],[200,195,175],[198,195,174],[196,194,173],[194,190,171],[179,170,151],[171,158,136],[147,130,122],[102,83,87],[86,70,79],[70,58,70],[58,50,65],[51,47,63],[51,46,62],[60,52,68],[57,47,64],[52,44,59],[50,43,58],[49,44,59],[53,48,63],[49,45,61],[48,44,61],[50,47,66],[50,47,67],[53,54,74],[57,56,78],[63,66,91],[105,118,138],[175,196,202],[197,223,228],[197,222,227],[191,211,213],[181,199,199],[188,208,209],[196,216,219],[191,210,212],[179,195,196],[191,206,204],[191,209,210],[192,212,213],[193,211,212],[193,209,209],[191,209,209],[190,208,209],[188,206,208],[187,205,208],[185,203,205],[183,201,203],[184,201,203],[185,200,203],[184,199,201],[182,198,198],[180,195,197],[178,188,187],[161,167,155],[158,162,143],[158,161,140],[159,161,140],[159,161,139],[158,159,138],[160,159,138],[159,158,137],[160,159,137],[158,158,134],[156,157,132],[154,156,128],[155,155,128],[155,155,127],[154,153,124],[154,148,127],[106,78,79],[85,38,53],[83,38,50],[82,37,51],[81,35,48],[137,144,111],[138,144,111],[141,148,115],[142,149,116],[144,152,119],[144,154,120],[149,155,124],[151,157,126],[150,159,128],[156,162,130],[157,162,131],[158,163,134],[159,163,137],[162,167,141],[164,169,143],[165,171,145],[166,172,147],[168,173,150],[169,176,152],[168,178,154],[169,179,156],[171,181,160],[171,183,163],[173,185,165],[173,185,165],[172,184,166],[176,187,170],[175,188,172],[182,201,198],[194,220,231],[194,224,237],[198,226,238],[195,222,237],[194,221,235],[195,220,231],[194,219,225],[193,215,220],[192,210,213],[190,210,211],[192,212,212],[195,215,214],[190,211,209],[186,205,206],[106,118,127],[64,67,83],[67,62,82],[57,56,75],[50,48,64],[56,52,66],[49,46,60],[43,40,55],[45,41,57],[44,40,55],[50,44,59],[58,51,68],[67,59,74],[61,53,66],[63,54,66],[68,54,66],[78,61,72],[87,67,78],[83,69,80],[69,57,69],[70,56,68],[77,59,63],[155,139,131],[191,183,166],[193,190,168],[193,191,168],[199,193,173],[200,195,175],[199,196,175],[196,194,173],[197,193,175],[193,182,165],[171,156,132],[154,133,122],[118,95,97],[93,75,82],[76,65,75],[59,52,66],[51,47,63],[51,47,64],[61,53,69],[56,47,64],[54,46,61],[52,45,59],[50,45,58],[52,46,60],[48,43,58],[47,43,60],[47,44,63],[47,44,65],[54,55,75],[56,55,76],[64,65,90],[67,77,99],[157,177,185],[189,214,219],[196,221,225],[191,212,214],[182,200,201],[184,203,204],[193,213,216],[191,211,213],[180,197,197],[187,202,201],[191,209,209],[193,212,213],[193,211,212],[194,211,211],[191,209,211],[191,209,211],[189,207,209],[187,205,209],[185,203,206],[184,202,204],[186,203,205],[185,200,203],[184,199,201],[182,198,198],[181,195,199],[177,188,189],[162,169,159],[157,160,142],[158,161,140],[157,160,139],[158,160,138],[158,160,138],[160,159,139],[158,157,137],[159,158,137],[158,157,136],[157,157,134],[154,156,132],[155,155,131],[154,154,129],[154,152,127],[152,147,127],[104,75,77],[85,36,52],[84,35,49],[85,35,51],[82,34,50],[135,139,106],[137,142,109],[140,146,112],[141,147,113],[143,149,115],[145,152,118],[148,155,122],[149,155,124],[152,157,129],[154,160,130],[155,162,132],[155,164,136],[157,163,138],[162,165,142],[164,167,142],[165,169,144],[167,173,149],[167,174,150],[169,176,154],[169,178,156],[170,179,159],[171,180,162],[173,181,165],[173,183,166],[174,185,168],[175,186,169],[177,186,171],[179,190,177],[183,201,199],[194,221,231],[193,224,235],[197,225,237],[196,222,236],[195,222,234],[195,219,229],[193,217,223],[193,216,220],[193,211,214],[192,209,209],[190,207,206],[194,213,213],[191,211,212],[187,207,210],[100,113,124],[63,62,80],[69,65,84],[57,56,73],[50,49,65],[55,52,69],[49,46,62],[47,44,61],[47,44,62],[45,43,59],[46,42,59],[54,47,63],[63,55,70],[69,57,70],[73,55,67],[78,59,70],[79,61,71],[100,75,85],[96,70,82],[77,60,72],[67,54,65],[75,58,65],[140,124,114],[187,177,158],[193,187,168],[193,189,169],[195,191,170],[197,195,174],[199,197,176],[197,194,174],[199,193,174],[197,190,172],[187,173,156],[160,140,125],[128,101,99],[97,73,80],[88,71,84],[63,53,70],[52,48,66],[51,46,62],[60,51,67],[58,48,64],[54,45,61],[53,45,60],[51,44,59],[51,44,60],[47,41,58],[47,43,60],[48,44,61],[46,45,63],[50,53,73],[52,52,73],[61,62,84],[57,65,94],[113,130,150],[182,207,208],[197,221,229],[192,212,219],[185,204,205],[179,199,200],[191,211,211],[191,209,209],[180,197,198],[186,202,201],[193,209,209],[193,211,211],[193,211,212],[192,210,212],[191,209,211],[189,207,209],[188,206,208],[187,205,208],[186,204,206],[186,203,205],[187,203,205],[185,200,203],[184,197,201],[182,196,200],[180,194,196],[180,190,192],[174,165,163],[173,146,138],[171,150,137],[167,155,139],[163,158,139],[159,158,138],[157,158,137],[158,158,137],[158,157,136],[155,157,134],[154,155,131],[155,154,131],[152,154,132],[151,152,130],[155,149,126],[154,144,127],[105,72,77],[85,35,53],[84,34,49],[84,34,50],[83,35,50],[135,138,107],[136,140,108],[139,144,112],[140,146,113],[141,148,115],[143,151,117],[146,153,120],[147,155,123],[150,156,126],[151,160,127],[151,162,130],[151,163,134],[153,163,136],[159,167,141],[162,167,142],[162,168,142],[166,172,148],[168,172,149],[169,175,153],[169,177,156],[170,177,159],[171,179,162],[170,178,162],[173,182,166],[175,184,168],[175,184,169],[177,186,172],[178,189,177],[183,199,200],[194,221,231],[195,227,238],[193,221,234],[194,220,234],[193,220,231],[194,218,227],[192,216,222],[193,216,221],[194,212,216],[193,210,211],[190,209,208],[195,216,215],[192,212,213],[183,204,208],[107,119,131],[64,61,80],[68,64,83],[54,53,70],[53,52,69],[54,51,69],[49,46,64],[49,46,65],[49,46,65],[47,45,62],[46,43,59],[51,44,60],[59,50,65],[74,60,73],[89,69,80],[80,59,68],[76,56,66],[99,74,82],[110,82,93],[80,60,71],[66,53,64],[73,57,64],[134,119,109],[183,173,154],[191,184,165],[191,188,167],[192,187,165],[197,193,172],[197,195,174],[199,196,175],[199,193,174],[199,193,175],[193,182,165],[175,159,139],[134,110,99],[101,76,80],[93,73,85],[66,53,70],[54,48,64],[50,46,60],[57,51,65],[57,51,65],[53,46,60],[51,44,59],[50,44,59],[51,44,60],[49,43,59],[48,44,61],[48,44,61],[45,44,61],[47,50,70],[52,51,71],[57,56,79],[57,64,95],[63,78,103],[166,190,194],[196,220,227],[193,214,220],[189,209,210],[177,197,198],[187,207,207],[191,209,209],[179,196,196],[184,200,199],[193,209,209],[191,209,209],[190,208,209],[190,208,210],[190,208,210],[190,208,210],[187,205,207],[187,205,207],[186,205,207],[184,204,205],[184,202,204],[183,200,203],[181,199,202],[176,201,201],[177,197,196],[182,189,193],[181,144,153],[157,73,85],[158,75,83],[159,88,91],[161,105,104],[167,122,117],[170,139,128],[167,152,135],[158,157,134],[157,154,131],[158,153,128],[154,152,125],[154,150,127],[151,150,127],[146,150,125],[150,144,127],[104,72,77],[84,35,53],[81,34,49],[80,33,48],[82,34,48],[130,129,103],[133,133,107],[135,137,110],[138,140,112],[140,144,115],[141,147,116],[143,149,118],[144,151,122],[147,153,124],[152,154,126],[155,157,129],[155,158,131],[156,159,134],[159,163,138],[162,165,141],[165,168,143],[168,171,148],[170,173,150],[168,177,153],[168,179,156],[170,180,159],[171,182,163],[171,181,164],[172,185,168],[173,186,169],[172,186,170],[173,188,173],[174,189,176],[182,199,200],[193,219,230],[193,224,236],[196,223,237],[193,219,232],[193,220,231],[194,218,228],[192,215,223],[191,214,221],[192,211,216],[191,209,210],[188,207,207],[195,216,216],[190,212,213],[179,199,203],[93,102,115],[67,63,83],[68,64,84],[54,53,71],[53,52,70],[52,50,68],[48,45,64],[50,47,67],[49,47,68],[47,46,63],[46,43,59],[48,41,56],[61,49,62],[80,64,73],[102,82,85],[100,78,83],[77,55,62],[98,72,77],[111,81,91],[82,62,73],[64,50,63],[70,53,60],[122,106,95],[180,169,149],[190,182,163],[189,184,161],[191,184,162],[196,191,170],[198,196,175],[200,196,177],[199,194,175],[197,192,173],[193,186,168],[184,172,149],[166,146,128],[116,92,91],[94,72,82],[74,58,73],[56,49,63],[48,45,57],[53,49,63],[54,50,64],[52,47,61],[52,46,60],[51,45,59],[50,43,58],[49,42,58],[47,43,58],[47,43,60],[45,44,62],[46,48,68],[54,52,72],[54,52,73],[59,64,92],[47,60,88],[134,155,164],[193,218,223],[194,215,220],[192,211,215],[178,197,200],[182,201,203],[191,209,210],[179,197,198],[183,199,198],[190,206,206],[190,207,207],[190,208,209],[191,209,211],[190,208,210],[190,208,210],[189,207,209],[187,205,207],[186,206,207],[184,205,206],[184,204,205],[184,204,205],[182,201,203],[180,201,203],[178,197,197],[177,187,191],[183,138,151],[163,55,77],[162,46,66],[156,44,62],[149,46,62],[146,50,63],[153,58,68],[158,77,82],[160,103,100],[164,130,118],[163,145,125],[156,151,122],[150,153,123],[150,151,126],[155,146,126],[151,141,125],[100,70,74],[81,35,52],[78,35,48],[76,33,47],[80,32,47],[128,89,82],[133,95,87],[138,101,93],[139,102,94],[140,106,96],[142,109,97],[145,114,102],[148,119,106],[149,122,108],[149,124,110],[150,126,112],[155,131,117],[157,136,120],[160,143,126],[161,149,129],[160,153,131],[162,161,140],[164,168,145],[166,173,150],[169,176,153],[171,178,157],[173,179,160],[173,180,162],[174,181,164],[175,183,166],[174,183,167],[174,185,169],[175,187,174],[186,202,204],[193,219,232],[193,224,237],[194,222,237],[192,219,232],[192,219,230],[195,219,230],[194,217,228],[192,214,223],[191,211,216],[191,210,212],[187,206,206],[193,215,216],[190,212,214],[176,195,200],[90,96,110],[70,64,84],[65,62,81],[52,51,70],[54,53,72],[50,48,67],[48,45,65],[52,49,69],[50,49,70],[48,47,65],[46,42,57],[48,39,54],[66,52,61],[89,72,73],[122,102,96],[118,94,91],[87,61,63],[94,67,70],[108,78,86],[85,64,75],[66,51,65],[72,52,60],[121,101,93],[175,159,140],[191,179,160],[190,181,158],[187,177,154],[196,189,167],[199,196,175],[200,196,178],[200,194,177],[197,191,172],[192,187,170],[188,180,157],[179,162,143],[150,126,120],[100,76,80],[81,62,74],[59,49,64],[48,46,59],[52,48,62],[56,51,65],[53,45,60],[53,44,59],[51,43,58],[49,43,57],[49,43,58],[45,41,56],[47,43,58],[46,44,62],[46,47,68],[53,51,70],[55,53,72],[56,61,87],[49,58,88],[92,111,125],[191,215,218],[193,214,218],[192,211,216],[182,201,205],[177,196,199],[190,208,210],[179,197,198],[180,196,195],[190,206,206],[191,208,208],[191,209,210],[190,208,210],[189,207,209],[190,208,210],[190,208,210],[187,205,207],[188,207,208],[187,206,208],[186,205,206],[185,202,204],[182,199,202],[181,197,200],[181,191,194],[172,188,192],[180,150,161],[160,61,81],[163,49,70],[160,44,65],[154,40,60],[145,38,56],[139,39,55],[145,38,55],[149,42,58],[144,49,61],[147,66,70],[160,98,93],[166,133,117],[156,147,124],[148,147,124],[147,138,123],[97,65,70],[81,34,52],[78,35,48],[75,33,47],[79,31,47],[132,45,59],[133,46,60],[134,47,61],[134,47,61],[135,50,63],[134,52,62],[135,54,63],[137,58,66],[139,61,68],[141,58,68],[140,54,64],[140,55,64],[142,59,67],[143,64,70],[144,73,74],[146,83,81],[150,96,93],[156,111,104],[158,126,116],[165,141,128],[173,150,138],[178,155,145],[178,155,145],[177,156,145],[175,156,145],[172,156,145],[175,159,149],[172,162,156],[185,196,200],[194,222,236],[196,226,241],[197,225,240],[196,223,235],[191,217,228],[190,214,226],[192,215,225],[192,214,224],[193,213,219],[191,210,213],[185,205,206],[191,214,215],[190,213,214],[169,187,192],[85,91,105],[66,59,80],[65,61,80],[51,50,69],[52,51,71],[49,48,69],[48,46,66],[51,50,70],[47,48,69],[47,47,66],[48,43,59],[52,41,54],[78,60,65],[113,95,91],[123,105,93],[155,133,125],[101,74,72],[98,70,72],[101,70,78],[84,62,73],[70,53,67],[72,49,59],[131,106,100],[169,150,132],[190,175,155],[190,178,154],[180,168,144],[192,184,162],[197,194,173],[199,195,177],[199,193,175],[198,194,175],[196,193,176],[190,183,164],[184,171,153],[163,142,131],[119,96,93],[92,72,82],[62,51,67],[52,48,64],[53,48,62],[58,51,66],[54,43,60],[54,41,58],[52,42,58],[49,43,57],[49,43,57],[45,41,56],[46,42,57],[45,43,61],[47,48,68],[54,52,70],[57,54,74],[53,56,81],[52,59,91],[72,88,108],[187,211,213],[193,215,217],[191,211,217],[185,204,208],[172,191,195],[188,206,209],[178,196,198],[180,196,196],[189,205,206],[188,206,206],[189,207,209],[189,208,209],[188,206,208],[191,209,211],[189,207,209],[188,206,208],[187,205,207],[187,204,206],[186,202,205],[182,197,200],[181,198,201],[177,197,198],[181,193,196],[175,190,193],[185,162,170],[162,63,84],[166,48,69],[163,45,66],[156,44,63],[146,42,59],[138,38,57],[133,36,53],[132,37,53],[136,36,52],[135,36,51],[137,45,55],[144,60,64],[158,100,96],[160,136,122],[158,137,127],[100,64,69],[80,34,49],[78,34,47],[76,33,47],[78,31,47],[131,36,51],[137,40,55],[140,40,56],[139,41,56],[139,42,58],[140,41,59],[140,40,58],[142,40,58],[141,39,58],[142,39,58],[142,40,57],[141,40,56],[145,41,58],[150,43,59],[151,45,60],[152,49,63],[152,53,66],[154,58,70],[157,60,72],[161,64,75],[160,64,75],[162,68,79],[162,69,79],[164,70,81],[161,70,81],[163,74,84],[165,75,89],[158,80,96],[176,167,178],[195,226,243],[194,222,242],[195,224,241],[199,224,238],[196,222,233],[190,215,224],[188,213,221],[190,214,220],[192,213,219],[191,210,214],[187,207,208],[188,212,212],[190,213,214],[167,180,187],[80,84,99],[62,58,77],[65,58,79],[53,52,68],[52,52,70],[48,49,69],[45,46,65],[50,52,70],[46,47,68],[48,47,66],[51,43,63],[57,44,54],[97,78,77],[149,131,124],[127,112,100],[172,153,143],[119,93,88],[99,66,70],[99,68,76],[83,61,72],[71,51,64],[81,53,61],[141,114,107],[168,150,132],[183,168,147],[192,177,152],[176,160,135],[191,182,159],[195,192,171],[198,195,175],[200,196,175],[197,195,175],[197,193,176],[193,187,170],[187,180,160],[175,161,143],[145,126,117],[100,80,85],[66,52,67],[55,47,65],[52,44,61],[60,49,66],[56,43,60],[52,41,57],[51,43,58],[51,42,58],[47,40,56],[44,39,55],[45,41,58],[45,43,61],[47,46,64],[50,49,68],[54,52,73],[58,57,79],[57,60,90],[59,73,97],[177,201,204],[190,215,215],[191,212,218],[187,208,212],[170,190,193],[184,204,207],[180,200,201],[178,194,196],[185,203,205],[188,206,208],[189,208,209],[188,207,209],[190,208,210],[191,209,211],[188,206,208],[187,205,207],[186,204,206],[185,203,205],[184,202,204],[183,201,203],[182,201,202],[180,197,199],[175,194,196],[176,189,190],[180,160,167],[157,62,83],[163,48,67],[165,47,66],[162,44,64],[156,40,62],[147,38,60],[137,33,53],[131,32,50],[131,33,51],[131,33,50],[132,35,50],[138,37,53],[139,43,55],[137,62,66],[143,81,88],[104,55,63],[78,35,46],[79,34,47],[78,33,47],[78,32,49],[134,41,56],[135,41,57],[135,39,56],[135,40,56],[136,40,57],[137,38,56],[139,38,57],[140,37,56],[141,37,57],[142,39,58],[144,42,59],[146,44,60],[150,45,62],[152,46,62],[157,46,65],[158,47,66],[158,47,66],[157,47,66],[160,49,67],[160,49,66],[159,49,66],[160,51,68],[160,51,68],[162,51,70],[161,52,69],[160,54,70],[162,54,75],[155,58,80],[167,141,155],[197,227,242],[194,228,246],[193,224,242],[197,223,240],[194,221,235],[190,216,229],[190,214,224],[191,215,222],[192,212,219],[189,209,212],[186,207,208],[187,210,210],[188,210,212],[162,175,182],[77,81,95],[60,58,76],[59,54,74],[53,50,67],[52,50,68],[49,49,69],[46,47,66],[53,54,74],[46,47,66],[51,50,66],[51,43,60],[64,51,58],[115,99,94],[169,154,146],[145,133,120],[176,159,146],[136,113,103],[104,74,75],[93,62,70],[81,58,69],[71,50,60],[88,60,65],[151,126,117],[172,156,137],[180,167,147],[187,172,146],[170,153,129],[190,180,158],[194,190,171],[198,196,176],[198,196,176],[198,197,178],[198,196,178],[195,191,174],[187,183,164],[181,170,152],[164,148,137],[107,88,91],[71,57,70],[57,49,66],[53,47,63],[59,49,66],[55,44,61],[51,42,58],[51,43,58],[51,42,58],[47,39,56],[46,40,56],[45,41,58],[44,42,60],[48,47,65],[49,47,67],[54,52,73],[56,55,76],[61,63,92],[53,64,91],[165,187,193],[189,213,214],[188,210,215],[189,210,214],[174,194,197],[181,200,203],[182,202,203],[175,190,193],[183,201,203],[186,204,206],[186,205,206],[186,205,207],[186,204,206],[187,205,207],[186,204,206],[185,203,205],[186,204,206],[186,204,206],[185,203,205],[181,199,201],[180,199,201],[178,195,198],[174,193,195],[173,187,188],[177,161,168],[153,62,83],[158,48,67],[162,46,65],[164,44,64],[163,42,65],[158,40,61],[149,38,57],[140,37,55],[133,34,53],[131,33,52],[129,33,50],[129,34,50],[135,33,50],[134,36,52],[127,40,56],[103,39,53],[81,34,46],[80,33,48],[79,32,48],[79,32,50],[132,39,55],[130,38,53],[131,38,53],[132,38,54],[133,39,55],[132,39,54],[133,38,54],[135,38,55],[139,40,58],[145,43,61],[147,44,61],[150,44,62],[149,44,60],[148,43,59],[149,44,62],[152,45,64],[153,43,64],[155,43,64],[156,43,63],[157,44,64],[158,45,65],[160,46,66],[162,47,67],[162,46,67],[161,47,66],[160,49,69],[162,49,72],[158,52,77],[165,129,144],[192,219,232],[196,232,248],[196,228,248],[197,224,244],[195,224,240],[192,219,232],[190,214,224],[191,214,221],[192,212,219],[188,208,211],[186,206,207],[186,209,210],[188,210,211],[153,166,173],[70,75,89],[59,58,76],[54,51,70],[54,50,67],[52,49,66],[51,50,68],[48,49,69],[56,57,79],[47,48,67],[50,50,65],[54,47,61],[79,66,70],[145,133,125],[176,168,157],[157,149,135],[167,154,138],[150,130,116],[117,90,86],[93,64,70],[78,55,64],[71,49,55],[101,74,73],[159,137,123],[175,160,141],[182,168,149],[184,168,142],[170,151,127],[188,177,155],[194,190,171],[198,196,179],[198,195,179],[198,198,183],[197,197,180],[195,194,176],[189,189,172],[184,179,162],[178,166,154],[124,105,105],[75,60,70],[56,49,64],[51,47,62],[57,49,65],[54,46,61],[52,45,60],[51,44,58],[49,40,56],[47,39,55],[45,40,55],[47,43,60],[43,41,59],[47,46,64],[49,47,67],[53,51,72],[56,54,75],[61,63,89],[55,62,90],[143,160,169],[187,210,212],[187,209,215],[188,209,213],[179,199,203],[177,196,199],[182,202,203],[172,187,190],[183,200,202],[184,202,204],[184,203,205],[184,203,205],[184,202,204],[186,204,206],[186,204,206],[185,203,205],[185,203,205],[184,202,204],[184,202,204],[181,199,201],[179,198,199],[178,196,197],[174,191,194],[173,187,189],[178,166,174],[149,64,86],[150,44,64],[157,44,62],[160,43,63],[161,42,63],[161,41,61],[154,40,58],[146,39,56],[139,36,54],[135,33,52],[126,33,49],[122,34,49],[130,35,53],[134,35,54],[119,38,54],[94,37,49],[76,34,47],[77,34,48],[77,34,49],[78,33,48],[134,39,57],[133,40,57],[134,41,58],[135,39,57],[137,39,57],[137,39,57],[139,40,58],[139,38,57],[141,39,57],[144,42,60],[146,42,59],[148,41,59],[147,40,57],[145,40,55],[144,39,56],[147,41,58],[149,41,59],[151,41,60],[152,42,62],[154,43,64],[157,44,65],[157,43,65],[159,44,66],[158,44,65],[156,45,65],[154,46,64],[156,45,69],[152,50,73],[162,130,142],[188,212,223],[193,224,242],[196,229,252],[193,223,244],[192,222,237],[191,219,230],[191,216,224],[189,213,218],[189,209,216],[187,207,210],[185,205,206],[183,206,207],[189,211,213],[147,160,167],[64,70,84],[57,58,76],[53,52,70],[55,49,67],[50,46,61],[49,48,64],[48,49,70],[52,53,78],[47,47,69],[52,50,69],[55,48,64],[98,85,89],[166,157,147],[184,179,166],[169,164,148],[157,146,128],[164,147,127],[128,104,98],[92,64,68],[74,51,58],[86,62,65],[125,98,93],[172,153,137],[172,158,139],[182,167,149],[184,168,141],[169,150,125],[188,175,153],[196,191,173],[197,195,180],[200,198,184],[199,200,186],[198,201,183],[193,196,177],[191,193,177],[183,183,166],[185,176,164],[148,131,129],[80,66,74],[56,50,64],[50,48,62],[55,50,65],[54,47,62],[50,45,59],[50,44,59],[50,42,58],[47,39,56],[45,39,55],[44,40,57],[43,41,59],[47,46,64],[47,46,66],[51,49,70],[51,50,71],[57,58,83],[62,68,96],[115,129,141],[189,209,213],[188,210,215],[190,211,215],[184,204,207],[175,194,197],[183,203,204],[171,186,189],[181,199,201],[184,202,204],[185,204,206],[185,204,205],[185,203,205],[186,204,206],[186,204,206],[184,202,204],[182,200,202],[182,200,202],[182,200,202],[180,198,200],[177,196,197],[176,194,194],[174,190,194],[171,186,190],[176,168,176],[146,66,88],[144,41,62],[150,43,61],[153,42,59],[153,42,61],[156,41,60],[153,42,59],[150,42,58],[147,38,54],[147,37,55],[138,36,52],[128,33,48],[129,36,51],[125,40,54],[107,52,60],[92,52,59],[76,34,47],[78,32,49],[76,33,48],[74,33,47],[131,38,56],[131,38,56],[133,38,56],[136,37,57],[138,37,57],[140,38,56],[141,39,59],[140,39,59],[141,40,60],[140,42,62],[139,39,58],[144,41,60],[146,40,60],[146,40,58],[147,40,57],[150,41,59],[155,43,62],[155,44,63],[155,45,64],[157,45,65],[157,44,65],[159,44,66],[161,45,67],[162,45,67],[156,47,65],[157,49,66],[160,48,71],[157,56,77],[163,130,139],[196,219,226],[190,218,235],[194,226,246],[196,227,245],[194,224,240],[192,219,233],[191,215,224],[192,214,220],[191,211,217],[187,207,211],[185,206,208],[184,206,206],[188,209,210],[136,147,155],[61,65,80],[58,60,78],[53,53,72],[54,49,69],[48,44,60],[49,47,62],[48,48,70],[50,52,76],[48,51,72],[54,53,74],[54,48,66],[102,94,103],[169,165,160],[187,185,173],[177,172,155],[158,147,128],[168,151,136],[122,100,97],[95,68,75],[77,50,59],[104,76,78],[142,117,109],[176,161,146],[177,165,150],[178,161,146],[185,168,146],[169,150,129],[189,177,159],[194,191,174],[196,196,180],[200,200,183],[199,201,185],[199,201,186],[198,199,185],[195,196,184],[187,187,170],[185,180,167],[159,147,147],[93,81,92],[61,53,70],[51,49,63],[51,47,62],[56,49,63],[50,44,58],[50,44,57],[50,43,56],[48,41,56],[45,40,55],[43,40,57],[44,43,60],[44,43,62],[48,47,67],[51,51,72],[50,50,71],[52,54,75],[59,63,92],[100,112,125],[187,206,210],[186,208,212],[188,209,213],[185,205,210],[176,196,201],[181,202,205],[170,186,190],[179,195,198],[183,199,202],[185,202,203],[184,202,203],[184,202,204],[184,202,204],[183,201,203],[184,202,204],[183,201,203],[182,200,202],[180,198,200],[178,196,197],[176,195,196],[176,193,194],[174,190,194],[174,185,189],[178,171,178],[147,69,92],[142,43,65],[145,42,62],[145,42,60],[143,41,60],[143,38,58],[140,38,56],[141,40,58],[146,40,59],[150,38,58],[145,38,55],[139,35,52],[134,36,52],[112,45,52],[129,99,96],[100,67,71],[77,32,47],[77,31,48],[76,32,48],[72,32,47],[127,37,55],[128,36,54],[131,37,55],[133,35,55],[135,37,57],[135,38,56],[135,39,58],[134,39,58],[132,38,57],[132,36,56],[135,38,57],[142,41,61],[145,40,61],[146,40,59],[147,41,60],[150,42,61],[154,42,62],[155,43,64],[155,44,65],[156,44,64],[157,44,65],[158,45,66],[158,46,67],[160,45,67],[157,45,64],[161,45,64],[164,50,72],[158,60,80],[162,129,139],[195,217,224],[196,223,239],[186,218,234],[190,221,236],[193,222,238],[193,220,234],[190,215,226],[188,211,218],[188,210,215],[186,207,212],[184,205,208],[180,201,202],[184,204,206],[123,132,142],[60,63,78],[58,60,79],[52,51,70],[51,47,65],[47,42,57],[48,45,59],[47,47,66],[47,49,72],[52,55,77],[54,54,75],[45,44,66],[59,59,84],[109,112,132],[153,155,166],[167,164,164],[150,140,134],[161,147,140],[100,79,80],[98,71,78],[89,59,65],[119,89,87],[164,142,130],[180,170,152],[185,175,158],[174,157,141],[184,167,146],[168,148,130],[189,176,161],[194,191,176],[197,198,183],[200,201,183],[200,201,180],[199,200,184],[197,198,189],[192,192,189],[178,179,179],[164,162,167],[131,125,137],[75,68,84],[55,49,65],[49,47,61],[50,45,61],[54,46,61],[49,42,57],[49,43,56],[49,43,55],[49,41,56],[44,38,55],[42,40,57],[43,42,60],[42,40,60],[45,45,66],[49,50,72],[51,52,73],[52,55,74],[58,60,88],[79,90,105],[180,198,204],[186,207,209],[188,209,213],[185,206,212],[177,197,203],[179,200,203],[170,186,191],[177,192,195],[185,199,202],[185,200,201],[183,201,201],[183,201,203],[182,200,202],[181,199,201],[182,200,202],[182,200,202],[182,200,202],[179,197,198],[178,196,196],[176,195,195],[175,192,194],[173,189,193],[174,184,188],[177,172,178],[145,71,92],[139,42,65],[139,42,61],[135,40,59],[130,39,57],[122,36,52],[115,34,48],[113,33,47],[118,33,49],[128,37,55],[136,41,59],[132,42,58],[110,46,51],[121,88,81],[150,134,125],[100,68,71],[76,33,47],[75,32,48],[76,33,48],[73,31,48],[124,37,54],[124,35,53],[128,36,54],[130,36,55],[131,37,56],[131,38,56],[131,38,56],[129,36,54],[128,35,54],[130,35,55],[134,37,57],[140,39,60],[145,39,61],[147,40,60],[148,41,61],[149,42,62],[151,43,63],[151,42,63],[154,42,64],[156,42,65],[156,43,66],[155,45,66],[154,44,65],[155,43,65],[159,43,64],[167,48,70],[162,54,75],[140,56,75],[135,108,121],[190,210,219],[195,223,238],[192,224,239],[187,215,231],[188,216,230],[192,219,231],[190,217,227],[186,212,219],[186,210,214],[184,207,211],[183,204,207],[179,200,201],[183,202,205],[104,111,122],[59,59,76],[59,60,78],[54,51,69],[50,45,59],[47,41,54],[48,44,58],[47,46,63],[43,44,66],[55,55,78],[51,53,73],[40,44,73],[45,53,97],[54,64,114],[57,65,105],[80,82,107],[98,92,105],[99,88,96],[73,62,70],[85,68,80],[90,70,80],[126,108,111],[165,154,152],[175,172,166],[179,173,168],[168,154,150],[175,161,156],[156,140,125],[184,176,159],[189,191,175],[194,198,184],[195,199,189],[192,197,196],[177,183,188],[152,159,174],[110,118,140],[89,95,127],[67,69,102],[57,55,84],[59,55,76],[51,50,63],[50,48,62],[49,44,59],[55,48,63],[49,42,57],[47,41,54],[46,40,53],[48,41,56],[44,39,56],[42,40,58],[43,42,60],[43,42,62],[44,44,65],[47,48,70],[51,52,74],[51,53,73],[54,56,82],[65,73,93],[160,178,185],[184,205,207],[186,207,211],[185,205,211],[178,198,204],[179,199,203],[170,186,191],[174,189,192],[185,199,202],[184,199,200],[182,200,201],[181,199,201],[182,200,202],[182,200,202],[181,199,201],[181,199,201],[180,198,200],[179,197,198],[178,196,196],[176,195,194],[175,192,194],[172,188,193],[171,182,186],[173,169,175],[144,72,92],[136,42,64],[134,40,59],[130,38,55],[125,38,55],[119,36,52],[114,34,49],[110,32,46],[105,30,43],[106,30,45],[109,31,47],[101,37,45],[103,82,72],[141,139,119],[146,135,122],[100,68,70],[76,33,46],[76,34,48],[78,34,48],[76,31,49],[120,36,52],[122,35,53],[125,36,54],[128,36,55],[128,36,56],[128,37,55],[128,37,55],[127,35,53],[128,35,53],[131,36,56],[135,38,57],[140,39,60],[146,40,62],[147,40,60],[146,41,61],[145,42,61],[147,41,61],[149,41,62],[153,43,65],[154,42,64],[154,42,64],[153,43,65],[152,43,64],[154,43,65],[157,50,70],[154,52,74],[130,47,66],[103,41,61],[116,96,110],[194,213,223],[191,221,235],[193,226,242],[197,225,240],[189,218,230],[188,215,225],[189,215,225],[189,214,223],[186,211,215],[184,209,212],[182,204,206],[179,200,201],[176,194,198],[86,92,104],[57,56,74],[59,59,77],[55,50,67],[51,45,58],[47,41,55],[48,43,59],[45,43,61],[44,44,64],[58,55,77],[48,50,71],[39,45,80],[48,61,112],[53,66,120],[50,59,106],[58,61,96],[61,57,81],[51,44,62],[48,46,64],[53,45,66],[56,49,72],[63,62,87],[82,84,111],[112,115,141],[103,104,129],[90,85,112],[96,94,123],[98,93,123],[127,128,155],[121,130,155],[122,130,158],[124,132,164],[86,99,137],[68,82,124],[56,71,117],[45,61,111],[51,63,114],[52,57,106],[50,51,90],[56,55,80],[49,48,64],[49,47,61],[47,42,58],[54,47,62],[49,42,56],[47,42,55],[45,40,53],[47,41,56],[43,39,57],[42,41,59],[41,42,60],[43,44,64],[42,44,64],[46,48,70],[50,51,75],[50,51,73],[50,52,75],[56,64,87],[140,155,165],[182,202,202],[185,204,209],[185,204,210],[179,198,204],[177,196,201],[171,187,192],[171,186,189],[182,196,199],[183,198,200],[181,198,199],[179,197,199],[180,198,200],[180,198,200],[180,198,200],[179,197,199],[179,197,199],[177,195,196],[176,194,194],[175,193,194],[175,192,194],[171,188,192],[169,182,185],[174,173,178],[154,83,103],[136,42,64],[135,41,59],[132,38,56],[129,37,55],[130,35,55],[130,34,54],[126,35,53],[120,35,52],[110,37,50],[97,39,47],[110,76,72],[138,132,114],[139,141,119],[146,136,122],[100,68,68],[76,33,46],[76,33,47],[77,33,47],[78,31,49],[117,34,52],[120,35,54],[122,35,55],[125,35,55],[127,35,56],[127,36,57],[129,36,56],[127,34,53],[128,34,52],[130,35,54],[133,36,56],[138,38,58],[145,39,61],[146,40,60],[145,41,62],[143,41,62],[144,40,62],[147,40,62],[150,41,64],[150,42,65],[151,42,65],[152,40,64],[153,40,65],[157,46,68],[143,49,67],[119,42,61],[92,34,54],[80,35,55],[105,89,102],[190,208,218],[192,224,239],[188,221,241],[189,220,236],[189,220,231],[186,214,223],[185,209,219],[187,209,220],[184,211,214],[182,207,210],[180,203,205],[176,197,198],[164,179,185],[70,73,86],[58,56,74],[59,58,76],[53,47,64],[50,44,58],[47,39,56],[46,40,58],[44,42,62],[47,45,65],[59,57,75],[48,48,73],[42,48,86],[50,64,112],[53,65,109],[48,56,94],[50,52,84],[58,55,80],[52,46,66],[48,45,65],[53,45,70],[50,46,78],[50,55,94],[43,52,98],[55,64,111],[56,64,109],[54,58,105],[54,64,114],[58,66,121],[50,63,114],[57,74,122],[55,70,121],[45,58,112],[52,67,125],[48,63,120],[49,63,117],[40,54,107],[46,59,108],[49,57,105],[55,57,97],[58,57,85],[49,48,66],[49,47,61],[47,43,58],[55,47,62],[50,43,57],[46,41,55],[45,40,54],[48,41,57],[43,39,57],[40,40,59],[42,43,61],[44,45,64],[42,44,64],[45,47,69],[48,50,73],[50,51,74],[51,52,74],[52,58,84],[111,127,137],[179,199,199],[183,202,207],[184,203,209],[179,197,204],[174,193,198],[173,190,194],[171,186,189],[179,193,196],[181,196,198],[178,196,197],[177,195,197],[177,195,197],[178,196,198],[177,195,197],[178,195,198],[178,196,198],[179,197,198],[176,194,194],[175,193,194],[174,190,192],[170,187,191],[169,183,186],[176,175,180],[154,84,104],[136,42,64],[139,41,60],[139,38,58],[138,36,57],[136,37,57],[136,37,57],[131,38,56],[122,41,54],[108,46,52],[122,90,84],[143,136,120],[141,135,116],[142,138,116],[145,135,120],[101,69,70],[76,33,44],[75,33,46],[77,33,46],[75,32,48],[115,34,53],[116,35,54],[118,35,55],[118,34,55],[121,34,56],[123,35,55],[124,34,54],[126,35,55],[128,36,55],[129,37,55],[130,38,57],[135,38,59],[141,39,61],[143,40,62],[141,40,61],[140,40,61],[142,39,60],[146,39,61],[148,39,62],[145,41,61],[148,41,60],[153,38,60],[155,44,68],[141,47,65],[111,38,52],[85,32,45],[81,33,50],[86,34,55],[105,78,93],[184,205,213],[193,223,239],[192,226,246],[189,221,241],[188,217,235],[188,214,230],[188,212,221],[186,211,215],[185,209,214],[186,208,213],[178,203,205],[173,193,195],[141,149,158],[64,60,75],[62,55,73],[56,53,70],[51,46,65],[46,41,58],[45,40,55],[47,43,58],[44,41,60],[47,44,67],[56,56,76],[42,47,69],[43,50,99],[51,63,118],[50,58,98],[46,51,92],[48,52,88],[59,59,83],[52,47,69],[48,44,66],[51,47,73],[47,50,88],[49,56,103],[41,47,95],[48,58,109],[52,62,110],[50,55,100],[48,57,107],[48,57,110],[46,55,109],[49,64,121],[54,73,130],[40,55,107],[48,61,115],[45,58,112],[52,65,119],[41,54,106],[44,56,107],[46,57,108],[50,57,103],[56,57,90],[51,48,69],[50,47,64],[49,42,59],[56,47,63],[53,45,60],[46,40,52],[46,39,52],[49,42,58],[43,40,58],[41,42,61],[41,43,63],[44,45,63],[45,44,62],[45,46,65],[47,49,70],[47,49,70],[50,53,73],[48,53,77],[89,100,113],[176,194,196],[180,200,202],[182,202,207],[180,197,204],[172,187,192],[175,192,195],[166,184,186],[177,192,195],[179,194,197],[179,194,197],[178,193,196],[178,193,196],[176,194,196],[177,195,197],[177,194,199],[177,195,199],[176,194,198],[175,193,196],[176,195,198],[173,193,197],[173,191,193],[172,189,188],[177,165,172],[144,68,90],[137,42,64],[137,40,59],[139,38,57],[142,37,57],[139,37,57],[132,37,56],[121,37,52],[109,45,50],[131,115,101],[147,141,122],[144,141,122],[144,140,121],[144,137,119],[144,133,119],[97,67,71],[73,33,45],[72,32,44],[73,30,46],[72,30,48],[115,34,53],[115,34,53],[116,35,54],[117,34,54],[118,35,55],[118,34,54],[120,35,54],[121,33,53],[123,34,53],[125,36,54],[129,38,56],[133,37,57],[136,37,58],[139,37,59],[140,39,60],[138,40,60],[138,38,58],[142,38,60],[143,39,61],[143,39,60],[151,40,61],[155,42,65],[142,45,65],[110,37,54],[90,29,44],[84,31,46],[88,33,51],[98,36,56],[115,79,93],[189,204,213],[190,216,233],[196,226,248],[195,227,248],[191,222,242],[187,215,233],[186,213,225],[186,212,218],[184,208,214],[184,205,210],[178,202,205],[175,194,197],[109,115,125],[59,55,72],[62,57,75],[51,53,69],[48,48,66],[48,42,59],[47,41,57],[46,43,58],[41,40,58],[46,45,66],[52,55,74],[39,44,71],[46,52,98],[52,62,105],[45,53,91],[46,51,94],[49,52,89],[55,55,80],[52,48,71],[46,44,68],[51,49,77],[45,52,92],[48,57,104],[42,50,96],[45,55,104],[48,59,108],[48,55,103],[47,57,110],[43,54,106],[47,56,108],[45,58,115],[55,69,125],[45,56,107],[43,56,108],[42,55,109],[51,64,119],[41,54,106],[45,58,109],[49,61,114],[51,58,106],[56,57,92],[52,49,71],[49,46,64],[48,42,59],[55,46,63],[53,46,61],[47,41,55],[44,39,53],[48,43,59],[43,41,58],[41,42,60],[41,43,62],[42,43,61],[46,45,61],[44,45,63],[45,47,67],[49,51,71],[51,52,72],[48,51,74],[72,81,95],[170,186,188],[179,198,201],[180,200,205],[180,199,205],[167,183,187],[175,193,195],[165,183,185],[176,192,195],[178,193,196],[178,193,196],[179,194,197],[179,194,197],[176,194,196],[177,195,197],[178,196,198],[178,196,198],[177,195,199],[179,196,202],[180,197,203],[173,194,195],[173,190,190],[166,180,179],[172,156,162],[142,62,82],[140,40,61],[142,40,59],[138,39,59],[133,41,60],[126,39,57],[118,35,51],[111,35,47],[115,60,60],[146,137,119],[144,140,121],[142,139,120],[142,138,119],[143,135,117],[142,130,117],[95,66,70],[72,33,46],[71,33,45],[71,31,46],[70,30,48],[113,34,54],[113,34,54],[114,34,55],[116,35,56],[116,35,56],[115,35,54],[116,34,53],[117,33,52],[119,34,53],[122,34,54],[125,35,55],[129,37,57],[133,38,59],[133,37,58],[137,38,59],[136,38,59],[136,39,58],[138,38,58],[140,39,60],[144,40,61],[152,42,64],[148,44,65],[121,40,57],[89,32,48],[86,30,46],[94,33,50],[102,34,53],[105,40,59],[115,89,101],[183,206,215],[188,219,236],[190,223,243],[192,227,247],[194,226,246],[193,223,241],[189,217,231],[186,214,223],[185,209,217],[185,206,210],[177,200,202],[172,188,193],[81,84,97],[60,55,72],[60,58,75],[50,54,70],[47,48,66],[48,40,58],[48,41,57],[45,42,57],[41,41,58],[44,44,64],[50,51,72],[38,41,71],[49,54,92],[47,56,91],[44,54,95],[49,55,100],[49,52,87],[53,54,79],[49,49,74],[45,44,72],[48,49,82],[41,51,95],[41,52,101],[42,49,95],[43,54,103],[50,62,114],[46,54,107],[44,56,113],[43,56,108],[45,55,107],[43,55,111],[50,63,117],[40,48,98],[41,54,106],[43,56,110],[52,65,120],[41,54,107],[42,56,108],[45,58,111],[47,57,106],[53,57,93],[52,51,74],[48,46,65],[47,42,60],[53,44,62],[53,46,61],[48,43,58],[43,40,54],[47,43,59],[46,42,60],[41,41,60],[41,42,61],[43,42,60],[46,44,60],[43,43,60],[43,44,63],[50,50,68],[50,50,69],[50,51,74],[60,66,82],[158,173,176],[175,194,196],[179,199,204],[179,199,204],[163,180,184],[173,191,193],[163,181,183],[172,188,191],[176,191,194],[178,193,196],[178,193,196],[179,195,198],[177,195,197],[177,195,197],[179,198,198],[180,199,200],[183,201,205],[183,199,206],[176,191,199],[167,185,186],[165,179,180],[165,177,175],[176,159,165],[142,63,82],[139,41,61],[138,41,60],[130,41,60],[117,36,56],[114,33,52],[115,33,51],[114,36,50],[121,62,63],[147,135,118],[142,137,118],[143,140,121],[140,136,117],[141,133,116],[141,128,117],[94,64,69],[72,33,47],[69,33,44],[69,31,47],[69,31,49],[111,34,54],[112,34,54],[112,34,54],[113,34,55],[114,35,56],[115,35,55],[115,34,53],[117,34,54],[120,35,54],[122,35,55],[124,35,55],[126,36,57],[128,36,57],[128,35,56],[130,36,55],[131,37,57],[134,39,57],[136,37,57],[142,37,59],[147,42,63],[148,44,64],[136,42,61],[108,36,51],[90,30,45],[97,30,48],[110,34,53],[116,38,58],[112,49,66],[173,164,176],[189,222,233],[193,228,247],[192,225,244],[187,221,239],[190,222,240],[192,221,239],[192,220,234],[189,216,226],[188,212,222],[187,208,213],[179,200,202],[152,166,173],[71,72,86],[61,55,75],[53,50,69],[51,52,70],[47,43,63],[46,39,57],[47,42,57],[45,43,57],[43,41,59],[44,41,62],[50,47,70],[39,40,67],[43,49,79],[43,51,91],[43,54,101],[47,55,103],[50,54,87],[49,51,74],[49,50,77],[43,43,75],[47,50,87],[40,53,100],[43,56,106],[40,47,94],[43,55,107],[51,64,120],[47,57,112],[42,57,113],[44,58,112],[42,52,106],[45,59,116],[43,57,112],[38,48,97],[44,57,110],[43,56,111],[52,65,119],[40,53,106],[43,58,111],[43,58,112],[47,57,108],[53,58,95],[51,51,76],[47,45,64],[47,42,61],[51,44,62],[54,47,63],[47,44,60],[42,40,57],[44,41,59],[46,43,62],[42,42,60],[40,40,59],[43,42,59],[46,43,59],[42,41,58],[42,42,60],[49,48,63],[49,47,66],[51,50,74],[50,56,72],[145,158,162],[176,193,196],[175,194,200],[178,198,203],[165,184,188],[173,191,193],[162,180,182],[168,184,187],[173,188,191],[177,192,195],[176,191,194],[176,192,195],[175,193,195],[174,192,194],[174,194,196],[176,195,198],[178,196,200],[173,188,194],[168,182,188],[168,183,187],[171,184,186],[167,181,181],[170,157,163],[132,60,81],[127,42,63],[120,40,58],[110,34,52],[108,31,52],[116,34,51],[123,37,56],[118,36,52],[118,56,61],[144,132,117],[140,135,116],[140,137,118],[139,135,116],[139,131,113],[140,127,116],[90,61,67],[71,33,48],[67,33,45],[67,31,47],[67,30,47],[107,33,52],[108,33,53],[110,33,53],[112,34,55],[113,34,55],[114,33,54],[115,33,53],[116,32,51],[119,33,53],[120,34,54],[123,36,56],[124,35,56],[126,35,56],[128,35,56],[128,37,55],[130,38,56],[133,38,57],[138,37,58],[145,38,61],[147,43,63],[141,44,62],[124,39,56],[100,31,48],[100,29,43],[112,33,50],[122,36,56],[123,40,59],[113,48,66],[168,161,173],[189,220,230],[197,227,244],[201,229,246],[195,226,240],[193,222,236],[189,215,228],[190,214,223],[189,213,219],[186,210,217],[187,209,212],[183,202,203],[128,138,146],[67,65,81],[58,52,71],[52,49,67],[53,50,68],[51,41,63],[45,38,55],[46,42,58],[45,43,59],[42,40,59],[43,41,61],[48,44,66],[39,40,64],[40,46,76],[43,51,97],[45,56,107],[46,54,99],[47,52,84],[45,47,72],[48,49,79],[44,44,76],[46,51,90],[39,52,101],[46,57,109],[38,45,93],[42,52,105],[46,59,118],[47,60,115],[41,56,113],[46,57,113],[44,55,111],[43,59,116],[43,59,114],[40,53,102],[44,57,108],[41,54,108],[49,62,115],[37,50,102],[42,58,112],[41,57,112],[44,55,106],[50,55,95],[52,52,79],[49,47,67],[44,41,59],[50,43,61],[56,49,66],[49,44,62],[43,41,60],[44,41,60],[45,42,61],[42,40,58],[39,39,56],[42,41,57],[43,41,55],[44,42,58],[42,41,57],[48,47,62],[49,47,64],[49,49,70],[46,52,69],[125,137,144],[174,191,193],[176,195,199],[175,195,200],[166,186,189],[172,191,193],[162,179,182],[167,182,185],[172,187,190],[175,190,193],[175,190,194],[175,191,195],[175,193,195],[175,194,195],[176,195,200],[182,201,206],[177,195,199],[167,182,186],[171,185,188],[171,187,191],[167,185,187],[163,181,181],[170,163,171],[129,72,93],[113,39,61],[104,35,52],[110,35,54],[115,37,57],[120,38,53],[126,37,56],[120,37,54],[110,47,55],[139,124,110],[139,135,115],[137,134,114],[137,133,114],[138,131,113],[139,127,115],[88,61,66],[69,32,48],[66,32,44],[65,31,46],[65,31,46],[106,33,52],[109,34,54],[109,33,53],[111,34,54],[112,34,54],[113,34,53],[116,34,53],[118,33,52],[120,34,53],[120,34,53],[123,36,55],[127,37,57],[130,36,57],[131,37,58],[132,38,56],[135,39,58],[137,37,58],[141,38,59],[144,41,63],[143,43,63],[132,44,60],[110,34,48],[98,29,45],[113,31,49],[123,37,56],[125,38,59],[121,39,59],[113,43,62],[140,122,133],[189,211,218],[184,213,226],[181,214,227],[180,213,223],[179,209,216],[178,203,208],[177,200,202],[175,199,199],[174,197,200],[173,197,196],[172,190,190],[103,109,118],[73,67,85],[56,50,67],[50,49,63],[51,47,62],[49,40,60],[43,36,52],[47,43,59],[44,41,59],[42,42,61],[41,41,61],[45,45,64],[37,40,65],[40,47,82],[44,54,101],[48,57,106],[47,55,97],[47,52,85],[42,45,76],[48,48,81],[45,45,77],[44,50,89],[42,51,104],[46,54,108],[40,47,95],[40,49,102],[45,57,116],[47,60,116],[40,52,110],[45,54,109],[42,53,108],[42,57,112],[49,63,117],[41,53,103],[41,53,100],[41,52,106],[47,60,111],[36,49,101],[42,57,112],[43,59,113],[43,55,105],[48,54,94],[50,51,80],[48,45,65],[45,41,61],[49,44,62],[56,49,67],[50,45,63],[44,41,60],[43,40,59],[42,39,58],[43,40,58],[40,38,54],[43,41,57],[42,40,54],[44,42,56],[44,41,55],[46,45,59],[49,48,64],[50,51,68],[44,49,67],[98,110,119],[172,189,190],[174,193,194],[173,192,198],[166,187,189],[171,190,194],[162,176,182],[167,181,185],[173,188,191],[174,190,192],[174,190,193],[173,190,194],[173,192,195],[177,196,200],[181,200,205],[179,198,202],[168,186,189],[169,185,187],[172,188,190],[170,188,190],[165,185,187],[164,183,185],[175,177,185],[143,110,124],[105,35,56],[110,37,55],[121,36,55],[121,38,56],[123,37,53],[131,36,57],[124,39,56],[109,42,52],[139,115,105],[138,134,112],[135,133,111],[134,131,110],[135,128,110],[136,125,112],[86,63,67],[67,32,48],[67,31,44],[64,31,44],[63,31,44],[110,32,52],[111,34,54],[110,33,53],[110,33,53],[111,34,54],[113,34,53],[115,35,54],[117,33,52],[120,34,52],[123,36,53],[122,35,51],[127,37,54],[129,37,55],[130,37,55],[134,37,55],[136,37,56],[140,38,58],[141,38,58],[145,41,62],[138,44,62],[116,40,53],[100,29,42],[111,34,50],[119,39,59],[119,38,59],[114,34,55],[110,35,56],[105,43,62],[132,122,134],[184,213,224],[190,223,242],[191,227,245],[192,224,245],[190,221,242],[189,216,235],[190,215,232],[186,212,225],[183,208,214],[182,206,208],[172,189,192],[81,87,98],[66,62,79],[54,48,64],[49,46,60],[49,45,59],[49,41,59],[42,36,52],[47,43,60],[41,38,57],[43,42,61],[41,41,61],[43,44,64],[35,40,67],[39,46,84],[42,52,100],[47,53,100],[47,53,94],[44,50,87],[43,49,84],[46,50,85],[47,48,79],[40,45,83],[43,51,101],[43,51,102],[38,46,91],[40,49,100],[46,56,116],[50,62,116],[40,51,105],[40,51,103],[44,55,109],[41,52,110],[49,60,117],[41,53,104],[37,48,93],[39,49,100],[45,56,104],[36,48,97],[42,56,109],[44,58,111],[44,55,104],[46,52,91],[50,52,81],[48,47,66],[45,42,61],[46,42,59],[52,46,63],[50,46,63],[45,42,59],[42,39,56],[40,37,54],[42,39,56],[41,39,54],[41,39,53],[40,38,52],[43,39,53],[43,39,53],[44,42,56],[49,46,62],[50,49,66],[45,49,66],[82,94,104],[167,183,184],[172,190,192],[173,191,198],[168,189,191],[169,187,191],[160,175,180],[167,181,184],[172,187,190],[174,190,192],[174,192,191],[175,193,194],[178,196,200],[181,199,205],[178,197,201],[170,188,192],[169,187,190],[174,192,194],[175,193,196],[173,193,196],[176,190,196],[175,192,197],[174,186,192],[163,142,154],[112,43,65],[117,38,58],[125,38,57],[125,35,55],[124,36,53],[127,34,54],[123,39,56],[112,39,51],[132,103,95],[138,133,113],[135,133,112],[130,126,106],[133,127,108],[135,125,111],[85,63,66],[67,32,48],[67,32,44],[63,31,44],[64,32,45],[108,33,53],[108,32,52],[107,32,52],[108,33,53],[109,33,52],[112,34,52],[115,35,54],[117,33,51],[118,33,52],[122,35,52],[123,35,51],[127,38,54],[128,37,54],[130,38,56],[133,38,57],[135,37,57],[137,38,58],[136,40,60],[136,41,62],[123,39,58],[100,32,47],[100,32,47],[113,35,53],[105,35,53],[100,31,49],[100,30,48],[105,35,54],[107,51,68],[183,189,197],[189,227,240],[191,228,250],[193,228,250],[193,227,244],[188,224,237],[185,220,232],[184,216,227],[183,212,223],[178,207,217],[177,201,206],[155,171,177],[69,75,86],[57,54,71],[53,47,63],[48,44,58],[46,42,56],[48,41,58],[42,37,53],[45,42,58],[41,38,56],[45,43,62],[40,38,59],[40,42,62],[35,38,67],[41,46,84],[41,48,92],[43,51,91],[42,50,89],[41,49,90],[41,48,88],[42,49,86],[47,48,80],[39,43,79],[43,48,95],[42,50,98],[36,45,88],[38,48,97],[44,54,112],[48,59,112],[38,48,97],[36,48,96],[42,54,105],[39,50,103],[45,55,109],[40,52,98],[36,45,86],[37,45,93],[42,53,98],[36,46,92],[42,54,104],[43,55,106],[41,51,99],[44,49,88],[48,49,78],[48,46,65],[44,42,61],[46,43,60],[47,43,60],[50,46,63],[46,43,60],[43,40,57],[41,38,55],[40,38,54],[40,38,51],[39,36,50],[38,34,48],[41,37,52],[43,38,53],[43,39,53],[49,45,61],[48,46,63],[47,49,66],[89,98,108],[150,165,166],[172,189,191],[172,190,196],[169,189,191],[168,186,190],[160,175,180],[163,177,180],[165,180,183],[168,185,185],[170,189,188],[177,195,195],[180,198,201],[179,195,200],[172,188,191],[168,186,188],[174,192,195],[175,193,197],[176,196,200],[175,196,201],[177,192,199],[170,189,195],[167,184,191],[180,168,179],[121,52,75],[119,37,58],[123,38,55],[123,34,52],[124,37,53],[126,35,54],[121,37,54],[117,38,52],[121,84,79],[139,132,114],[135,131,112],[130,128,108],[132,126,107],[132,122,108],[84,62,65],[67,32,48],[67,32,44],[64,32,44],[62,30,43],[105,35,53],[105,34,52],[106,33,52],[108,33,53],[109,33,52],[111,34,52],[113,34,53],[117,34,52],[118,34,52],[122,34,52],[124,35,53],[126,36,54],[128,37,55],[128,37,56],[128,38,58],[133,39,60],[131,38,59],[126,40,59],[113,38,56],[96,32,49],[85,31,47],[88,32,47],[93,29,45],[93,29,43],[101,33,48],[111,35,54],[119,36,58],[118,46,66],[144,134,146],[189,219,235],[192,228,252],[190,231,251],[194,229,252],[193,230,252],[193,230,251],[192,227,248],[190,222,241],[188,218,230],[182,206,213],[147,161,169],[75,80,93],[58,57,72],[53,48,62],[49,43,56],[48,42,56],[47,42,58],[39,37,51],[44,41,57],[38,35,53],[46,43,63],[41,39,59],[39,38,60],[37,38,67],[38,41,76],[41,46,82],[40,50,83],[38,48,86],[39,47,93],[40,47,92],[42,48,87],[45,46,79],[42,45,80],[43,47,92],[41,48,95],[36,45,85],[35,46,94],[42,52,109],[47,57,108],[38,46,92],[33,47,94],[43,55,105],[39,47,97],[41,51,96],[38,49,89],[33,41,80],[38,45,91],[39,48,91],[35,44,88],[39,50,98],[39,51,99],[38,48,94],[43,48,86],[46,48,76],[46,46,64],[43,41,60],[46,43,61],[45,41,58],[48,45,61],[45,43,57],[40,38,53],[40,38,52],[40,37,52],[39,37,49],[39,36,48],[38,34,48],[41,35,51],[43,37,53],[44,39,53],[50,43,59],[48,44,61],[45,46,63],[96,105,115],[136,151,151],[170,187,189],[171,188,195],[169,188,191],[167,185,189],[157,172,177],[162,176,180],[168,183,186],[170,188,189],[174,194,193],[177,196,196],[175,192,192],[169,184,186],[167,183,184],[171,187,189],[170,188,191],[171,190,194],[170,189,195],[170,189,196],[169,190,197],[172,196,201],[179,196,204],[171,162,173],[120,52,75],[121,38,60],[118,38,53],[120,36,51],[123,37,53],[124,35,53],[119,37,53],[117,36,50],[109,67,65],[138,131,115],[133,129,111],[130,127,108],[132,127,107],[130,120,106],[83,60,64],[66,32,47],[66,31,43],[64,32,44],[62,30,43],[101,33,51],[104,33,52],[106,33,52],[108,32,51],[109,33,50],[111,36,52],[113,35,52],[116,34,52],[119,35,54],[121,36,53],[122,36,53],[123,36,55],[120,36,55],[118,37,57],[115,38,59],[111,37,56],[105,35,53],[95,32,48],[84,28,43],[79,27,42],[83,28,44],[90,29,46],[98,31,49],[107,34,52],[116,37,54],[123,39,57],[125,39,59],[115,41,62],[124,110,123],[187,214,228],[182,215,236],[188,222,241],[193,223,243],[190,223,242],[189,224,240],[191,223,237],[188,217,231],[184,210,220],[176,197,204],[125,139,145],[74,79,89],[55,53,67],[54,48,63],[51,44,59],[48,42,57],[48,42,57],[38,35,50],[41,38,54],[35,32,49],[44,41,60],[43,40,59],[38,36,55],[38,37,61],[39,40,68],[42,44,75],[39,45,79],[39,46,85],[38,46,90],[39,46,88],[41,45,83],[40,44,79],[40,44,79],[43,48,85],[40,48,87],[36,43,82],[36,44,90],[40,51,104],[43,54,100],[37,43,86],[34,46,93],[40,52,98],[37,47,91],[39,46,88],[38,46,85],[33,39,77],[38,42,84],[41,46,86],[35,43,82],[39,50,93],[38,48,94],[38,45,88],[42,46,82],[43,45,74],[47,46,65],[42,40,59],[45,42,61],[44,40,59],[46,42,61],[45,42,58],[40,37,51],[40,37,51],[38,36,50],[39,37,50],[38,36,49],[37,35,48],[38,35,48],[41,37,50],[44,38,51],[49,42,59],[47,43,63],[46,47,66],[88,100,107],[141,154,154],[166,179,181],[169,187,192],[167,185,192],[167,183,187],[150,165,169],[161,176,179],[168,183,187],[175,191,194],[176,194,197],[172,191,194],[166,184,188],[167,185,190],[172,191,194],[175,194,197],[175,196,199],[175,197,201],[177,198,203],[177,204,210],[178,207,216],[181,201,212],[170,191,197],[170,169,176],[130,64,86],[120,36,59],[113,37,53],[117,35,51],[118,35,51],[117,35,51],[116,34,50],[113,37,50],[102,56,57],[136,124,109],[128,124,106],[131,124,106],[131,123,106],[131,119,107],[83,60,65],[65,32,47],[66,32,43],[64,31,43],[64,30,44],[100,33,51],[101,32,51],[104,34,53],[106,34,53],[107,33,51],[108,34,53],[110,35,55],[108,34,54],[107,35,54],[103,36,53],[100,35,52],[98,34,51],[94,34,50],[89,31,47],[86,28,43],[84,26,41],[83,25,41],[83,26,41],[87,27,43],[95,29,48],[101,30,49],[108,32,52],[114,33,55],[116,37,57],[121,38,56],[122,39,56],[117,38,56],[105,39,58],[144,119,135],[187,212,222],[187,221,235],[191,220,235],[187,218,235],[183,214,229],[179,211,222],[178,206,215],[177,202,209],[176,196,203],[172,189,193],[105,115,120],[74,73,84],[57,51,66],[54,47,63],[50,43,59],[47,40,56],[47,42,57],[39,36,50],[38,35,52],[34,31,48],[43,40,58],[44,41,60],[37,36,54],[36,35,56],[40,40,66],[40,41,71],[37,41,74],[37,42,80],[37,44,84],[38,44,82],[39,43,78],[39,43,80],[37,41,76],[39,44,80],[41,48,87],[36,42,82],[35,42,87],[40,50,100],[42,51,95],[35,42,82],[33,45,90],[38,49,95],[36,46,89],[37,46,88],[40,47,87],[34,39,77],[35,39,76],[40,44,82],[33,40,77],[36,47,86],[36,45,86],[38,43,82],[39,42,75],[40,42,69],[46,45,62],[42,40,57],[43,40,58],[43,39,57],[45,41,60],[46,42,59],[41,37,51],[37,33,47],[34,32,46],[37,34,48],[37,33,47],[37,34,47],[37,34,48],[40,37,49],[44,38,50],[47,42,58],[45,42,63],[46,48,67],[91,104,111],[143,155,156],[164,177,178],[168,186,190],[166,184,191],[166,180,188],[145,160,167],[165,179,187],[171,186,193],[172,189,194],[168,187,189],[167,186,190],[169,189,193],[172,193,197],[172,194,201],[175,197,206],[178,201,210],[182,206,215],[183,205,215],[176,203,209],[176,206,214],[178,195,207],[167,187,191],[167,165,171],[122,59,80],[114,35,56],[111,36,52],[115,35,52],[113,35,49],[112,35,49],[115,34,49],[113,37,51],[101,52,55],[136,122,108],[129,125,106],[130,122,104],[131,122,107],[128,115,105],[82,59,65],[65,32,48],[66,32,44],[64,31,43],[63,29,43],[94,32,49],[94,32,49],[96,34,51],[96,33,51],[96,34,53],[93,33,53],[90,33,52],[85,32,50],[81,30,47],[78,29,46],[76,27,44],[74,26,44],[72,25,42],[74,26,42],[80,27,41],[85,29,44],[92,30,48],[97,31,50],[102,32,51],[108,32,53],[111,33,54],[115,34,55],[119,36,57],[120,38,57],[120,37,55],[117,38,54],[106,35,53],[96,35,53],[102,61,79],[174,185,193],[179,208,214],[184,208,218],[183,214,225],[185,213,224],[184,211,218],[182,207,212],[178,201,202],[174,192,193],[167,181,182],[99,104,109],[65,61,73],[54,45,61],[52,44,60],[50,44,59],[45,41,56],[47,44,58],[37,35,49],[36,33,50],[35,32,49],[41,38,55],[44,41,59],[38,36,54],[38,36,57],[37,38,61],[36,37,64],[36,39,70],[36,40,74],[36,42,77],[37,42,76],[37,40,74],[35,40,75],[37,40,74],[36,40,76],[39,46,86],[35,42,82],[35,42,85],[42,50,97],[39,48,88],[36,43,82],[34,45,88],[37,49,92],[34,44,88],[37,45,90],[40,48,90],[34,39,75],[33,37,72],[37,42,76],[34,40,76],[36,44,80],[35,42,78],[37,42,77],[37,40,70],[37,39,63],[44,43,59],[43,40,57],[43,40,57],[43,39,56],[44,41,58],[44,42,57],[40,36,50],[37,34,47],[35,33,46],[37,34,48],[39,35,49],[37,33,47],[37,33,47],[40,35,49],[42,37,51],[46,41,59],[42,41,60],[47,53,70],[90,104,111],[137,149,150],[162,175,176],[165,184,186],[166,184,190],[166,181,185],[149,165,168],[161,176,180],[167,182,186],[173,190,193],[176,195,196],[176,197,198],[175,197,200],[176,201,202],[179,203,208],[182,206,213],[181,206,213],[177,201,209],[174,196,205],[177,203,208],[178,204,210],[169,188,196],[156,173,177],[160,149,157],[109,48,68],[109,36,55],[111,36,53],[113,35,52],[110,36,51],[110,36,51],[112,33,50],[111,35,51],[100,51,55],[135,122,108],[126,122,103],[128,120,103],[128,120,104],[127,115,104],[80,57,63],[64,32,48],[64,31,44],[63,31,44],[63,30,44],[88,32,49],[86,32,48],[84,32,48],[82,31,49],[79,31,49],[75,31,48],[70,27,44],[68,26,42],[68,25,42],[70,25,42],[73,26,44],[77,28,45],[82,29,46],[88,31,49],[93,32,51],[97,32,52],[104,33,55],[108,33,56],[109,34,55],[110,37,55],[111,36,54],[113,36,54],[116,37,55],[116,36,55],[115,35,52],[110,35,51],[100,34,51],[91,34,52],[83,37,55],[144,129,137],[170,182,186],[166,189,193],[170,195,202],[164,187,195],[164,187,193],[165,189,192],[162,186,188],[160,180,182],[154,170,172],[103,110,115],[59,56,68],[53,45,60],[51,43,59],[49,44,59],[43,41,55],[42,42,55],[39,37,51],[36,34,50],[36,33,50],[41,38,56],[44,41,59],[38,35,52],[39,37,56],[34,33,55],[35,35,58],[37,38,66],[35,39,69],[34,39,69],[34,39,68],[35,37,68],[33,37,68],[36,39,70],[36,40,74],[38,44,82],[36,43,81],[35,41,83],[43,49,92],[35,43,80],[36,43,80],[36,45,85],[38,47,89],[32,41,86],[40,50,96],[39,47,91],[35,39,74],[33,36,68],[34,38,69],[33,39,73],[33,40,73],[35,40,72],[35,38,69],[36,38,65],[35,38,59],[43,42,58],[42,39,55],[42,39,55],[40,36,53],[42,39,55],[44,42,56],[37,34,46],[36,33,44],[34,32,45],[38,34,47],[38,34,48],[38,33,47],[38,33,47],[38,34,48],[40,36,50],[43,40,58],[35,37,54],[56,64,79],[94,109,115],[132,144,146],[157,170,171],[164,183,184],[166,184,188],[159,175,176],[150,166,167],[163,179,179],[162,178,178],[164,179,180],[165,182,183],[166,185,187],[170,192,192],[172,196,197],[174,199,201],[173,199,201],[170,194,198],[171,194,199],[178,200,206],[175,199,204],[163,185,190],[159,179,183],[160,174,178],[164,139,152],[111,44,64],[108,36,54],[111,34,52],[111,35,53],[109,35,52],[107,33,50],[109,33,51],[108,36,52],[102,55,59],[134,121,106],[127,123,104],[126,118,101],[127,118,103],[123,112,102],[77,56,62],[63,32,48],[64,30,44],[63,31,44],[61,29,44],[80,32,47],[77,31,45],[75,30,46],[70,28,45],[67,27,43],[66,25,42],[69,25,43],[72,25,43],[76,27,46],[77,29,46],[79,31,46],[83,31,46],[91,31,48],[96,32,50],[97,32,52],[100,32,53],[104,33,55],[107,33,56],[110,34,55],[111,34,53],[111,35,53],[112,35,52],[112,35,52],[112,34,52],[110,33,49],[107,35,51],[96,34,50],[86,31,49],[79,34,49],[89,53,64],[133,130,134],[163,185,186],[165,187,192],[170,193,198],[171,193,197],[173,195,199],[174,198,202],[173,195,199],[162,181,184],[121,133,138],[63,65,76],[55,49,64],[51,43,59],[50,44,60],[43,41,55],[41,40,54],[39,36,51],[40,37,53],[40,37,54],[43,41,59],[43,40,59],[41,38,55],[35,34,52],[33,33,54],[33,34,55],[35,36,62],[35,37,65],[33,37,64],[34,36,64],[35,36,65],[31,34,62],[33,36,63],[36,39,70],[36,40,76],[35,42,79],[35,40,79],[42,47,87],[33,39,74],[36,42,77],[35,43,80],[35,44,84],[34,43,88],[41,51,98],[37,45,89],[35,39,72],[31,34,62],[33,36,64],[34,40,72],[34,39,70],[34,37,67],[34,36,65],[36,38,62],[32,34,53],[43,41,56],[40,38,52],[40,38,52],[37,34,48],[41,38,53],[44,41,55],[35,32,45],[35,31,44],[33,31,44],[40,35,48],[38,32,46],[38,32,46],[39,33,47],[38,33,47],[42,38,52],[42,39,57],[33,36,53],[73,83,96],[104,119,125],[132,145,147],[158,171,172],[164,182,184],[162,180,185],[157,173,177],[147,162,166],[160,175,180],[162,178,182],[162,177,180],[166,182,183],[167,186,188],[170,191,193],[172,195,197],[171,195,199],[170,193,199],[175,197,203],[176,196,204],[172,191,199],[170,191,197],[168,187,192],[157,178,179],[159,171,175],[120,86,101],[107,37,57],[109,35,54],[111,34,52],[110,35,53],[109,34,52],[105,31,48],[111,35,52],[103,36,50],[103,61,64],[133,121,107],[124,119,101],[124,116,99],[123,115,100],[119,108,99],[76,55,62],[60,29,46],[63,31,45],[62,31,46],[62,30,45],[73,30,44],[68,27,42],[67,26,43],[64,25,43],[66,26,44],[69,27,45],[73,28,48],[77,28,47],[81,29,49],[82,29,48],[84,30,48],[89,31,49],[93,31,50],[95,31,50],[99,32,53],[102,33,54],[103,32,54],[106,33,55],[108,34,55],[108,33,54],[107,33,53],[107,32,52],[107,32,52],[108,34,51],[105,33,50],[98,33,49],[90,34,47],[83,32,46],[83,32,47],[78,35,47],[99,86,95],[170,191,196],[168,194,201],[169,200,202],[173,195,192],[162,168,167],[168,176,173],[169,180,178],[162,173,171],[140,147,149],[69,70,79],[59,52,65],[52,42,56],[52,44,58],[43,39,53],[46,43,57],[42,37,52],[41,38,55],[41,40,58],[43,41,59],[43,40,58],[41,40,58],[33,33,51],[31,32,52],[32,33,53],[33,33,56],[33,33,58],[34,34,61],[34,34,60],[36,36,64],[33,34,61],[31,33,58],[33,35,62],[35,38,69],[36,40,74],[34,38,76],[40,43,83],[33,36,72],[34,37,66],[33,38,70],[35,41,80],[38,45,90],[41,47,93],[39,43,83],[36,39,70],[33,32,58],[35,34,59],[31,35,62],[33,36,65],[32,33,62],[34,34,63],[34,35,57],[33,33,51],[44,42,56],[39,37,51],[38,36,50],[37,35,49],[42,39,53],[43,39,54],[34,30,45],[34,30,45],[33,29,44],[37,33,47],[36,32,46],[35,31,45],[37,33,47],[36,32,46],[41,37,52],[39,36,53],[35,38,52],[94,106,115],[109,124,127],[139,153,153],[158,172,173],[164,180,183],[160,180,184],[153,171,174],[160,178,181],[169,187,191],[172,191,195],[172,192,196],[173,194,197],[172,195,199],[172,195,201],[170,193,200],[166,189,195],[173,197,202],[178,201,208],[179,201,209],[174,197,204],[168,189,196],[165,184,187],[169,187,189],[161,168,175],[130,99,114],[103,38,57],[109,34,52],[108,34,50],[108,33,50],[105,32,49],[107,33,50],[111,34,50],[98,37,48],[104,72,71],[129,120,107],[123,115,102],[122,114,101],[121,114,100],[119,110,101],[75,55,61],[59,30,45],[62,32,45],[59,31,46],[61,29,45],[67,27,42],[63,25,40],[64,26,41],[65,28,43],[68,29,46],[72,27,47],[77,29,49],[79,28,48],[83,29,49],[83,30,49],[84,31,49],[88,31,49],[90,30,48],[93,31,50],[95,31,51],[96,32,51],[98,32,52],[98,31,52],[100,32,52],[102,33,52],[104,34,53],[104,32,51],[105,32,51],[102,33,51],[99,33,50],[93,31,47],[85,31,45],[80,31,44],[79,32,45],[75,32,43],[77,56,66],[162,172,180],[172,201,208],[179,200,202],[174,172,168],[156,138,130],[157,139,128],[153,133,123],[146,131,122],[127,117,113],[69,61,65],[53,44,54],[55,44,58],[50,42,55],[45,40,54],[46,42,56],[47,42,56],[43,40,56],[44,43,60],[42,39,56],[41,38,54],[40,39,56],[33,32,50],[32,32,52],[31,32,52],[31,32,53],[32,32,53],[32,32,55],[32,33,55],[34,34,57],[34,34,57],[29,31,53],[32,34,57],[36,37,64],[36,39,69],[32,36,69],[38,41,76],[32,35,66],[33,36,62],[34,37,66],[35,40,74],[39,45,84],[38,43,82],[41,45,80],[35,38,69],[32,31,58],[34,33,56],[29,32,55],[33,35,58],[31,31,54],[32,32,54],[34,33,54],[33,32,50],[44,41,56],[39,37,51],[37,35,49],[36,34,48],[42,39,53],[41,37,52],[34,30,45],[32,28,43],[33,29,44],[36,32,46],[36,32,46],[35,31,45],[36,32,46],[36,32,46],[40,37,50],[34,34,47],[35,40,51],[111,122,127],[113,127,129],[137,151,151],[159,174,174],[165,181,183],[160,179,183],[149,167,171],[158,176,179],[168,186,189],[170,189,194],[171,191,196],[171,195,198],[174,198,203],[177,201,207],[179,204,211],[178,204,211],[177,203,210],[175,200,209],[169,195,204],[169,196,204],[173,199,203],[172,191,194],[154,171,174],[150,158,164],[168,140,154],[101,41,61],[107,35,55],[108,36,54],[106,31,50],[106,32,50],[107,34,52],[105,33,50],[91,37,45],[111,86,82],[126,119,105],[123,115,102],[121,112,100],[122,113,100],[120,109,100],[73,54,59],[58,30,43],[61,30,43],[60,29,44],[60,29,44],[63,26,41],[63,26,40],[65,27,42],[66,28,43],[69,27,44],[74,28,48],[77,29,49],[81,29,48],[82,30,49],[82,31,50],[83,31,50],[85,31,50],[87,31,50],[89,32,50],[90,31,49],[91,32,50],[92,32,50],[93,32,51],[94,33,51],[94,31,50],[97,33,50],[98,32,50],[100,32,50],[94,34,49],[92,32,48],[87,30,46],[81,29,44],[79,31,45],[76,32,45],[72,31,40],[68,36,48],[135,132,141],[175,198,201],[169,178,174],[156,141,129],[164,139,121],[166,137,118],[161,130,116],[151,126,115],[126,108,105],[73,62,68],[50,40,51],[55,44,56],[50,40,53],[47,40,52],[43,39,51],[54,48,60],[47,43,58],[42,39,55],[41,38,53],[40,36,52],[39,36,53],[34,32,49],[33,32,50],[33,32,51],[31,32,52],[31,32,52],[31,32,52],[30,31,52],[32,33,54],[33,33,56],[29,30,50],[31,33,53],[34,36,58],[36,38,64],[33,36,64],[36,38,66],[32,33,59],[33,35,58],[32,32,60],[34,37,66],[37,42,72],[32,36,65],[35,38,67],[34,36,65],[31,32,57],[31,32,54],[30,32,53],[30,32,51],[32,33,51],[30,29,47],[33,32,50],[34,32,51],[43,39,55],[40,37,51],[35,31,46],[37,33,48],[40,37,52],[41,37,52],[33,29,44],[32,28,43],[34,30,45],[35,31,45],[36,32,46],[35,31,45],[34,30,44],[37,33,47],[37,35,48],[30,33,45],[41,49,57],[126,137,140],[121,132,132],[140,153,154],[157,172,175],[164,179,183],[161,176,181],[148,163,167],[149,165,166],[160,177,177],[164,181,184],[168,187,190],[168,189,190],[171,193,196],[171,194,197],[171,194,199],[173,197,202],[175,199,204],[174,198,205],[176,199,207],[176,199,206],[166,187,190],[155,175,179],[158,178,180],[165,174,177],[158,129,143],[101,40,61],[103,34,53],[103,33,51],[106,32,51],[108,35,52],[105,33,52],[101,33,51],[89,39,47],[117,93,88],[122,115,102],[122,114,101],[121,113,100],[120,110,98],[119,104,97],[73,52,58],[57,30,44],[61,31,45],[60,29,45],[59,29,44],[64,25,43],[66,27,43],[68,28,43],[69,28,42],[72,28,45],[75,29,49],[77,29,49],[78,29,48],[79,30,49],[79,30,49],[81,31,50],[82,30,48],[84,30,49],[84,31,49],[85,30,46],[85,31,47],[86,32,48],[86,31,48],[88,31,48],[91,32,50],[91,32,50],[92,32,48],[92,32,47],[86,33,47],[84,30,46],[81,29,45],[79,30,46],[77,30,46],[71,31,42],[70,31,40],[74,32,46],[119,107,118],[174,174,172],[151,136,125],[165,142,121],[169,146,122],[167,138,118],[159,133,113],[151,126,112],[132,111,106],[85,69,75],[53,40,51],[59,46,58],[50,40,51],[47,40,52],[44,38,50],[61,54,65],[56,52,65],[39,37,51],[39,36,50],[38,34,49],[38,35,52],[35,32,49],[34,33,51],[34,33,51],[32,33,52],[31,32,52],[31,32,52],[31,32,53],[30,30,52],[33,31,56],[29,30,52],[30,31,52],[32,33,56],[31,33,55],[33,35,57],[33,34,56],[31,32,54],[33,33,55],[32,30,57],[34,36,61],[32,36,58],[28,31,53],[33,35,57],[34,35,59],[31,33,57],[32,34,56],[30,32,53],[28,30,50],[32,31,50],[31,30,46],[33,31,48],[36,33,52],[43,39,54],[36,32,47],[34,30,45],[37,33,48],[40,36,51],[40,36,51],[33,29,44],[32,28,43],[33,29,44],[35,31,45],[36,32,46],[33,29,43],[34,30,44],[38,34,48],[34,33,47],[28,32,45],[49,58,66],[133,143,146],[124,134,134],[141,153,154],[157,172,175],[164,179,183],[158,172,175],[148,159,160],[153,165,161],[159,172,166],[162,175,175],[165,181,182],[168,186,184],[171,190,189],[173,193,193],[174,194,195],[170,188,189],[167,186,187],[167,185,188],[161,178,182],[154,170,175],[158,172,177],[160,179,183],[160,169,175],[158,132,146],[114,61,80],[101,36,55],[101,32,49],[101,33,48],[106,33,50],[107,33,49],[104,32,52],[99,32,51],[89,36,46],[114,86,82],[122,113,101],[120,112,99],[116,108,95],[115,107,94],[112,102,96],[68,54,62],[50,36,49],[50,36,47],[50,35,50],[50,35,49],[65,26,43],[67,28,44],[69,27,43],[69,27,42],[71,27,44],[72,28,46],[74,30,48],[75,29,47],[74,29,47],[76,29,47],[77,29,48],[78,30,48],[80,30,48],[80,29,47],[82,29,46],[82,29,47],[82,29,48],[82,30,49],[82,29,47],[86,30,47],[86,30,47],[85,30,46],[83,29,45],[78,30,46],[79,28,44],[80,28,45],[76,30,46],[72,28,45],[69,28,41],[73,30,39],[71,33,44],[99,76,85],[153,127,120],[160,130,111],[170,141,118],[168,137,118],[168,132,117],[161,134,112],[151,125,108],[135,109,102],[94,73,77],[57,42,52],[62,49,60],[48,38,49],[46,38,51],[42,36,49],[59,54,62],[61,58,68],[39,37,49],[40,36,51],[38,33,49],[36,34,49],[33,30,47],[33,31,48],[33,32,50],[33,32,52],[34,33,54],[34,34,54],[32,33,54],[35,36,58],[35,34,60],[34,34,57],[33,34,55],[33,35,57],[33,34,55],[32,33,53],[33,34,54],[33,33,54],[34,33,54],[33,33,56],[35,34,56],[34,34,54],[31,32,51],[31,32,51],[32,33,54],[33,32,54],[33,32,54],[31,33,53],[32,32,53],[31,31,50],[34,33,50],[34,32,47],[40,36,51],[43,39,54],[36,32,47],[35,31,47],[37,33,48],[39,35,50],[37,33,48],[33,29,43],[31,28,42],[30,28,42],[32,29,43],[35,31,45],[31,27,42],[36,31,45],[38,34,47],[35,35,50],[30,33,48],[55,63,71],[139,149,151],[128,139,139],[135,145,147],[154,168,171],[160,175,179],[158,168,173],[143,148,150],[145,151,148],[151,158,154],[152,159,160],[151,161,162],[153,166,163],[155,169,165],[153,167,166],[149,165,166],[149,165,167],[148,165,165],[147,166,165],[147,166,165],[150,168,170],[147,165,170],[139,157,163],[143,137,149],[104,52,72],[101,35,55],[98,32,50],[102,30,48],[105,34,49],[105,34,48],[102,34,49],[97,32,49],[96,31,49],[90,34,46],[111,78,77],[120,109,97],[116,108,95],[117,108,97],[114,106,94],[109,102,95],[67,66,71],[51,53,66],[53,54,66],[52,53,67],[52,54,67],[64,29,44],[65,28,43],[67,27,44],[68,27,44],[69,27,44],[68,28,44],[70,28,44],[71,29,45],[71,28,45],[72,28,45],[72,28,45],[74,29,46],[75,29,46],[76,29,47],[77,30,47],[79,30,48],[79,30,47],[79,29,47],[77,29,46],[76,30,44],[76,30,44],[75,30,45],[74,30,45],[76,28,44],[79,28,45],[79,29,46],[73,29,44],[70,28,44],[70,28,42],[75,29,40],[66,32,42],[63,37,43],[132,98,89],[163,130,109],[165,131,109],[163,122,109],[163,119,108],[160,125,110],[150,121,106],[133,103,96],[99,74,77],[57,41,49],[58,45,55],[49,38,49],[43,35,48],[41,35,49],[53,48,57],[64,61,70],[39,37,49],[42,38,53],[36,32,48],[34,32,46],[31,29,45],[30,29,46],[32,31,49],[32,31,51],[33,32,52],[31,32,52],[30,31,52],[31,32,55],[32,32,58],[31,31,55],[30,31,54],[30,32,54],[30,32,53],[31,32,53],[31,32,54],[31,32,54],[33,32,56],[30,32,54],[32,32,54],[34,32,54],[32,32,53],[30,33,53],[30,32,52],[32,30,52],[32,31,52],[30,32,52],[31,32,51],[30,31,52],[31,32,52],[33,31,47],[41,37,50],[39,37,50],[34,31,48],[35,31,48],[37,33,47],[39,35,48],[36,32,46],[31,28,42],[30,28,42],[30,28,42],[32,30,44],[36,33,47],[32,28,43],[35,31,45],[37,33,46],[36,35,50],[29,32,48],[61,69,75],[144,155,156],[135,145,147],[131,139,142],[150,161,163],[158,172,176],[152,161,168],[124,134,136],[130,139,137],[141,149,146],[145,155,155],[146,160,161],[145,163,162],[149,165,165],[153,168,171],[155,169,176],[154,171,180],[154,174,179],[154,175,178],[153,172,176],[150,168,174],[144,165,171],[144,161,169],[149,135,149],[101,45,65],[97,32,49],[98,33,48],[105,34,51],[105,33,50],[101,33,49],[96,33,47],[93,31,47],[94,31,47],[89,33,45],[106,70,70],[122,110,98],[117,110,97],[119,107,98],[112,103,93],[108,100,94],[64,67,72],[52,59,72],[55,58,72],[51,57,72],[50,56,70],[60,28,44],[61,28,43],[63,28,45],[64,27,45],[64,27,44],[64,27,44],[65,27,44],[65,27,44],[66,27,45],[68,27,44],[69,27,44],[71,28,45],[70,27,44],[73,29,47],[72,29,47],[72,28,46],[75,29,45],[78,29,44],[76,28,45],[74,29,46],[73,28,44],[73,28,43],[73,29,44],[78,28,45],[77,29,45],[74,29,44],[69,28,42],[70,27,42],[72,30,44],[73,30,41],[62,32,43],[52,29,36],[118,84,79],[155,121,102],[156,118,99],[160,113,103],[156,108,100],[152,112,104],[144,108,99],[129,93,88],[102,74,74],[58,41,47],[60,47,56],[49,38,48],[41,32,44],[44,37,49],[53,46,58],[55,51,63],[44,41,54],[41,40,53],[34,32,46],[33,31,45],[32,31,47],[30,29,47],[31,30,50],[30,31,51],[30,32,52],[30,32,54],[30,32,56],[30,32,58],[31,32,58],[32,33,58],[31,33,57],[31,34,58],[31,34,59],[33,34,60],[31,33,59],[31,33,60],[31,34,62],[30,34,61],[31,33,59],[32,32,58],[30,32,56],[29,34,56],[31,34,57],[31,32,57],[30,31,56],[30,33,56],[30,32,54],[31,32,54],[30,33,54],[33,32,51],[40,37,53],[37,36,52],[34,32,50],[34,31,48],[36,32,46],[37,34,46],[34,30,44],[32,29,43],[32,30,44],[31,29,43],[30,28,42],[35,32,47],[33,29,44],[34,29,43],[37,32,46],[36,35,51],[31,33,51],[66,73,81],[146,158,161],[142,153,156],[132,139,142],[145,156,158],[153,167,171],[146,153,161],[85,86,93],[100,97,99],[128,124,122],[144,143,141],[156,161,162],[162,173,174],[163,178,179],[162,180,184],[158,179,186],[156,180,189],[155,181,189],[154,179,188],[155,178,188],[155,176,186],[148,174,179],[143,158,166],[120,95,111],[94,34,54],[99,33,49],[101,35,49],[102,34,51],[100,33,51],[95,31,48],[94,31,46],[93,31,46],[95,31,47],[92,34,47],[103,66,66],[121,108,97],[114,107,94],[114,103,93],[109,100,90],[106,98,92],[61,65,70],[52,60,73],[53,59,73],[51,57,73],[52,58,73],[54,27,42],[55,27,42],[58,27,43],[59,26,43],[59,27,43],[58,26,42],[59,26,43],[60,27,43],[61,27,44],[63,26,44],[66,27,44],[66,27,45],[67,27,45],[69,27,46],[67,26,45],[65,29,45],[65,32,47],[69,32,47],[71,30,48],[71,29,47],[73,28,47],[75,28,44],[77,28,45],[77,29,45],[72,29,44],[68,28,42],[68,27,41],[72,27,43],[72,31,44],[67,29,41],[50,29,41],[44,29,36],[107,75,72],[154,118,102],[157,117,101],[159,114,105],[149,103,95],[145,101,97],[134,93,87],[120,79,75],[95,66,66],[58,40,46],[59,44,55],[51,39,49],[42,32,42],[45,38,48],[56,49,61],[48,41,55],[53,50,64],[46,48,62],[34,36,51],[31,30,46],[32,31,48],[30,30,49],[30,31,51],[29,31,52],[30,32,54],[30,33,58],[31,35,62],[30,33,61],[31,33,58],[31,33,59],[30,33,60],[30,34,61],[32,35,63],[30,33,62],[31,34,65],[30,35,65],[30,37,67],[30,35,65],[30,34,64],[33,36,65],[30,35,63],[29,35,63],[30,36,64],[30,34,63],[29,33,61],[31,36,65],[32,36,62],[30,33,59],[30,34,58],[35,35,57],[39,38,57],[37,38,55],[32,31,50],[35,32,49],[35,31,46],[38,33,46],[33,29,43],[32,28,42],[32,30,44],[31,29,43],[30,28,42],[32,29,44],[33,29,43],[34,29,43],[37,32,46],[37,34,53],[34,35,55],[67,74,84],[147,160,164],[146,160,162],[138,147,149],[144,155,157],[152,162,167],[131,132,141],[72,55,64],[100,76,78],[118,91,86],[124,101,94],[126,109,103],[132,121,116],[148,144,137],[158,162,158],[164,175,174],[167,184,185],[165,186,190],[160,185,193],[154,181,191],[151,177,187],[147,170,177],[150,157,165],[112,71,89],[99,33,52],[98,34,50],[98,33,49],[97,32,49],[94,31,48],[93,30,47],[93,32,46],[93,31,47],[97,32,49],[94,33,47],[96,57,58],[122,109,98],[115,108,95],[112,101,91],[109,100,89],[104,97,92],[64,67,74],[58,66,81],[58,64,79],[55,61,78],[54,61,77],[50,26,42],[51,26,42],[53,26,43],[55,26,44],[55,25,42],[55,26,42],[57,27,43],[57,26,42],[58,26,43],[61,27,43],[62,27,44],[65,28,45],[65,27,44],[65,28,46],[61,32,48],[68,50,63],[76,66,77],[80,70,83],[88,73,86],[67,46,59],[63,37,50],[64,32,46],[68,32,45],[71,28,43],[66,27,41],[65,28,40],[71,28,42],[75,27,43],[66,30,41],[59,28,40],[42,27,40],[40,31,37],[92,63,60],[149,113,99],[153,112,98],[152,109,99],[147,105,95],[141,98,93],[134,92,86],[121,79,76],[92,63,64],[58,41,48],[56,41,52],[50,37,47],[44,33,42],[43,36,44],[51,43,54],[49,42,55],[64,61,75],[61,64,80],[43,49,65],[33,32,48],[32,31,49],[29,30,49],[30,31,51],[29,32,53],[28,32,55],[30,34,61],[30,35,64],[29,34,63],[31,33,59],[30,32,60],[29,33,61],[30,34,63],[31,35,65],[29,33,65],[31,37,69],[31,38,71],[28,37,70],[29,36,69],[30,35,68],[32,36,68],[30,36,66],[29,37,66],[31,38,68],[31,35,65],[30,35,65],[31,38,68],[33,38,66],[28,32,60],[30,35,62],[35,37,61],[37,37,58],[33,35,55],[31,32,52],[35,32,50],[36,31,46],[38,32,46],[33,29,43],[31,27,41],[33,31,45],[33,31,45],[31,29,43],[31,28,42],[31,27,42],[34,29,43],[37,32,46],[37,34,54],[35,36,57],[65,73,84],[150,163,169],[148,163,165],[140,152,153],[143,153,156],[152,159,165],[109,105,115],[91,74,76],[120,94,89],[135,107,93],[142,117,99],[145,125,105],[149,129,108],[151,130,112],[149,127,115],[146,124,118],[144,137,131],[150,153,151],[159,171,176],[159,178,187],[153,174,183],[149,166,175],[145,143,153],[101,49,69],[101,32,51],[95,34,50],[95,33,50],[93,31,47],[93,31,46],[95,33,48],[94,33,46],[93,32,47],[98,31,48],[95,33,48],[91,51,53],[116,104,92],[113,106,93],[114,103,93],[108,99,89],[100,93,88],[65,68,76],[58,67,81],[57,64,80],[54,61,79],[52,59,75],[48,28,42],[49,26,41],[51,25,43],[51,24,42],[52,24,41],[53,25,40],[55,26,41],[55,26,41],[57,26,42],[58,25,44],[57,27,43],[61,26,43],[61,26,43],[57,33,49],[87,88,100],[128,151,156],[130,162,165],[133,160,167],[111,123,134],[55,48,59],[55,41,52],[56,42,57],[59,33,50],[63,27,43],[63,27,41],[69,29,43],[72,29,44],[70,28,42],[58,28,41],[46,26,40],[38,27,38],[42,32,37],[80,53,50],[140,104,95],[146,105,93],[148,106,94],[147,104,95],[138,99,91],[134,97,85],[122,84,78],[94,64,67],[64,46,51],[56,41,50],[50,38,49],[42,32,40],[46,35,46],[49,38,50],[49,48,56],[60,59,69],[80,83,98],[52,64,80],[35,37,57],[30,31,51],[28,30,49],[28,32,52],[29,32,54],[30,32,57],[31,35,64],[30,35,64],[27,33,60],[28,32,57],[28,32,58],[28,34,61],[29,34,63],[29,35,66],[27,35,66],[30,38,69],[32,38,70],[30,36,68],[33,38,70],[30,34,68],[29,34,68],[31,37,68],[28,34,65],[32,37,69],[29,36,64],[30,36,70],[31,39,74],[32,38,68],[28,33,61],[32,36,63],[35,37,61],[34,36,59],[32,34,55],[31,31,52],[35,32,52],[35,31,47],[36,32,46],[33,29,43],[30,26,40],[33,29,43],[34,30,44],[32,28,43],[31,28,42],[31,28,39],[34,30,44],[37,34,48],[35,35,54],[34,36,63],[61,71,83],[148,163,167],[151,165,167],[140,154,155],[141,153,155],[148,149,153],[100,86,89],[120,92,85],[135,107,95],[145,118,102],[150,124,107],[153,129,113],[154,128,113],[158,131,116],[158,130,116],[155,126,113],[154,126,109],[145,121,108],[131,118,113],[138,138,137],[150,160,161],[154,161,165],[140,112,129],[94,38,56],[95,32,48],[91,32,48],[91,30,46],[93,30,47],[93,31,48],[93,33,49],[92,31,46],[94,32,49],[98,30,49],[95,32,48],[91,47,51],[119,102,92],[110,102,90],[110,101,90],[104,96,85],[99,93,91],[65,64,74],[57,61,77],[53,61,75],[54,63,79],[54,61,75],[47,32,50],[44,25,44],[48,25,44],[48,24,43],[49,25,42],[50,26,42],[51,25,42],[52,26,42],[53,25,42],[53,26,42],[56,26,41],[58,25,42],[49,32,47],[77,88,98],[130,163,171],[130,172,177],[131,172,178],[135,164,175],[95,102,117],[52,40,52],[52,41,51],[49,46,59],[56,43,59],[59,30,46],[66,29,41],[72,30,40],[67,29,42],[58,28,40],[49,27,34],[43,26,33],[45,29,33],[57,38,39],[79,51,42],[132,96,86],[144,102,93],[151,105,96],[153,107,98],[147,105,96],[143,105,91],[132,95,85],[104,76,75],[76,57,59],[59,44,51],[51,39,48],[47,36,42],[53,41,51],[49,37,51],[61,57,65],[69,67,75],[96,100,114],[62,73,91],[40,44,64],[30,32,51],[29,30,50],[30,33,53],[30,33,55],[30,32,58],[31,35,64],[30,35,64],[28,33,60],[29,33,58],[28,32,58],[29,34,61],[30,35,64],[28,35,65],[26,35,66],[28,36,67],[29,35,67],[28,34,66],[32,37,69],[30,34,68],[28,33,68],[31,38,69],[27,33,63],[32,36,69],[28,35,63],[31,37,71],[32,40,75],[31,37,67],[27,31,59],[31,35,62],[32,36,60],[34,36,59],[31,33,54],[29,30,51],[34,32,52],[35,31,47],[35,32,46],[31,28,42],[30,27,41],[32,30,44],[32,30,44],[32,28,44],[31,28,42],[31,27,41],[33,29,43],[34,31,47],[34,35,53],[35,38,63],[55,64,79],[145,160,166],[147,164,168],[135,150,154],[142,150,152],[137,128,129],[112,90,88],[137,110,99],[147,120,105],[153,128,109],[153,127,109],[153,127,110],[157,130,114],[158,131,115],[156,129,112],[156,127,111],[154,123,108],[151,119,106],[139,111,102],[124,100,96],[114,97,94],[116,100,103],[102,62,78],[91,32,49],[91,30,45],[89,31,47],[91,30,46],[93,31,47],[92,30,46],[91,31,47],[92,31,46],[93,32,48],[96,30,48],[93,32,47],[90,48,51],[115,99,90],[108,101,89],[106,97,87],[104,96,86],[96,92,87],[63,61,69],[59,60,73],[56,59,71],[55,57,72],[55,58,71],[45,39,54],[43,28,44],[48,24,40],[49,24,38],[48,25,39],[48,25,41],[47,24,40],[49,25,41],[51,27,43],[52,27,42],[53,26,41],[53,29,47],[62,65,81],[123,159,169],[132,172,185],[130,173,185],[130,172,185],[130,167,181],[94,107,124],[52,38,52],[50,36,47],[49,47,60],[51,48,63],[57,40,60],[64,32,49],[67,28,42],[56,25,41],[48,27,43],[45,26,33],[51,32,28],[72,50,33],[89,63,38],[102,73,47],[125,90,72],[141,98,91],[151,104,97],[152,107,95],[147,108,92],[145,112,92],[139,106,91],[114,88,82],[92,73,70],[71,54,58],[54,40,48],[58,46,51],[64,51,60],[49,37,49],[62,50,59],[84,79,85],[88,94,105],[81,90,107],[45,50,70],[29,31,51],[31,32,52],[31,33,53],[30,32,55],[31,32,58],[31,35,64],[29,34,63],[30,36,62],[28,32,57],[30,34,60],[29,35,61],[29,34,63],[29,36,66],[27,34,66],[29,36,67],[28,34,66],[29,34,66],[32,37,68],[30,35,67],[29,35,67],[31,38,67],[30,36,66],[33,37,70],[27,34,63],[31,37,71],[32,40,75],[31,36,66],[26,30,57],[31,35,62],[31,35,60],[31,35,60],[30,33,54],[28,30,51],[32,30,50],[33,30,46],[33,31,45],[31,29,43],[30,28,42],[31,29,43],[33,31,45],[33,29,46],[32,28,43],[30,26,40],[32,28,43],[35,31,49],[34,34,52],[35,38,59],[45,52,71],[139,152,161],[145,164,170],[126,140,146],[143,140,141],[123,103,99],[137,109,101],[146,120,106],[150,124,107],[153,128,108],[157,131,113],[156,130,114],[155,129,112],[156,129,112],[153,126,109],[155,126,110],[152,124,110],[145,116,102],[140,108,95],[131,95,87],[121,83,80],[96,58,63],[85,34,49],[89,30,45],[90,30,45],[90,30,47],[91,30,46],[92,31,47],[91,31,47],[92,31,47],[94,33,48],[91,32,48],[93,30,48],[92,33,48],[87,48,51],[113,98,89],[107,101,89],[106,97,88],[103,94,84],[96,91,85],[63,59,65],[54,52,64],[55,52,63],[55,51,64],[52,50,62],[36,48,62],[37,34,50],[43,26,41],[47,26,38],[47,25,39],[48,25,42],[48,25,42],[49,25,43],[50,26,43],[50,25,45],[42,32,48],[51,59,73],[113,142,156],[127,174,188],[124,169,185],[121,164,180],[120,164,179],[114,161,174],[99,129,144],[54,47,62],[51,27,41],[50,38,52],[52,49,62],[54,48,65],[54,35,53],[52,25,41],[50,27,37],[46,26,30],[59,36,30],[81,56,33],[95,67,29],[106,75,30],[109,80,39],[118,84,58],[136,96,86],[148,107,95],[152,114,95],[151,119,97],[150,125,99],[143,116,95],[120,95,85],[104,84,77],[86,69,69],[58,43,48],[61,48,51],[65,50,58],[52,39,49],[71,52,57],[99,91,92],[98,105,111],[93,102,116],[55,62,81],[31,33,53],[30,31,51],[32,33,54],[31,33,55],[31,32,58],[32,36,65],[30,35,64],[32,38,65],[28,32,57],[30,34,60],[28,34,61],[30,35,64],[30,35,66],[28,34,66],[30,36,68],[30,35,67],[29,34,66],[33,38,68],[28,33,64],[31,36,68],[30,37,65],[29,35,64],[33,38,70],[27,34,62],[32,38,72],[32,40,75],[31,34,63],[27,29,55],[31,35,61],[30,35,62],[29,35,61],[29,34,55],[28,30,51],[30,30,50],[33,32,47],[34,32,46],[32,30,45],[29,28,43],[29,28,43],[32,31,46],[34,30,47],[32,28,44],[31,27,41],[31,27,43],[35,31,50],[35,34,53],[35,37,56],[37,43,66],[116,128,139],[144,160,167],[121,127,135],[124,111,111],[135,109,102],[145,117,104],[148,124,110],[149,126,109],[155,130,113],[153,127,112],[154,128,114],[155,129,113],[156,128,113],[153,126,110],[151,122,107],[147,118,105],[141,112,99],[133,104,91],[125,90,85],[115,74,76],[91,44,53],[85,32,48],[87,31,44],[90,31,45],[93,31,48],[92,31,47],[90,32,47],[91,31,47],[93,31,47],[92,32,48],[90,31,47],[92,30,47],[88,32,46],[86,50,52],[111,99,90],[104,99,89],[101,93,83],[102,92,84],[95,87,85],[61,55,63],[51,48,61],[51,48,58],[52,48,61],[49,47,60],[64,98,119],[54,76,97],[42,47,67],[41,31,48],[44,26,42],[47,24,40],[48,25,41],[47,25,42],[45,26,44],[41,34,56],[55,73,89],[100,141,153],[115,166,179],[113,170,185],[113,172,185],[113,166,181],[113,163,177],[108,159,172],[112,153,168],[74,75,95],[61,32,50],[55,33,46],[54,44,59],[52,52,62],[50,43,53],[46,28,38],[49,28,26],[67,47,28],[91,64,34],[101,73,34],[107,77,33],[111,79,35],[112,84,36],[113,82,49],[130,93,80],[149,112,96],[157,126,100],[159,132,107],[156,136,105],[149,125,100],[124,99,86],[107,87,80],[96,77,76],[66,49,54],[63,47,52],[61,45,53],[54,41,49],[73,54,55],[97,85,82],[120,125,127],[109,121,131],[67,75,94],[32,34,54],[27,30,49],[30,32,52],[30,32,54],[31,33,60],[32,36,66],[31,36,64],[32,37,62],[25,30,54],[30,34,61],[27,33,61],[31,36,66],[30,35,65],[27,33,64],[30,35,66],[28,33,64],[31,36,67],[32,37,66],[28,33,64],[31,37,68],[28,36,64],[27,35,65],[31,37,68],[25,33,61],[31,38,72],[31,40,74],[28,33,60],[27,30,54],[30,34,60],[29,34,61],[31,36,61],[29,32,54],[28,30,51],[31,32,52],[31,29,46],[32,32,46],[30,30,47],[28,28,45],[28,27,42],[31,29,45],[33,30,49],[33,29,45],[31,27,42],[31,28,43],[34,32,50],[35,35,53],[32,34,52],[33,39,61],[93,105,118],[137,149,158],[100,98,103],[122,104,100],[139,114,104],[143,118,104],[145,122,108],[150,126,112],[151,125,111],[151,124,112],[153,125,113],[153,126,113],[152,124,111],[149,120,107],[149,119,106],[147,112,102],[139,105,95],[129,97,88],[117,82,81],[103,62,69],[83,35,47],[84,32,48],[87,31,45],[91,31,45],[92,32,47],[90,31,46],[89,32,46],[91,33,48],[93,31,47],[89,30,45],[89,30,46],[91,30,48],[87,34,47],[90,58,59],[111,100,91],[104,98,88],[103,94,86],[100,91,84],[92,84,83],[58,52,62],[51,47,60],[50,48,58],[51,48,61],[50,48,61],[72,128,157],[82,139,164],[79,124,145],[62,83,103],[48,55,73],[40,43,60],[40,43,59],[40,48,66],[56,73,92],[81,122,139],[99,152,168],[104,163,178],[94,152,170],[102,159,178],[98,160,175],[104,160,176],[106,159,175],[102,155,171],[105,151,167],[91,108,132],[71,60,81],[50,33,42],[48,30,46],[51,47,64],[51,46,57],[54,37,35],[84,60,37],[95,72,33],[105,76,35],[107,78,34],[110,80,35],[112,81,38],[111,83,36],[110,83,50],[123,87,74],[147,107,94],[160,128,102],[160,132,108],[156,134,104],[152,126,103],[130,105,93],[106,85,79],[102,82,80],[87,67,71],[67,48,55],[64,47,54],[60,45,52],[74,56,56],[98,78,75],[115,111,112],[125,143,146],[98,113,128],[35,39,60],[27,31,47],[28,32,51],[29,32,55],[29,34,61],[31,37,67],[31,37,64],[30,36,58],[25,31,54],[30,35,63],[28,33,63],[32,37,67],[30,35,65],[27,32,62],[30,35,65],[29,34,64],[31,36,66],[30,35,63],[29,34,65],[32,39,67],[28,35,62],[28,36,67],[30,37,66],[26,33,60],[32,39,73],[32,38,72],[25,31,55],[26,31,54],[31,35,62],[28,32,61],[32,36,63],[29,31,55],[29,30,51],[30,31,51],[30,29,48],[30,31,47],[29,31,50],[29,30,49],[28,28,41],[30,28,44],[31,30,49],[32,30,47],[31,28,42],[29,27,41],[32,33,48],[34,35,55],[32,34,53],[31,37,55],[68,80,96],[114,121,135],[96,86,88],[129,109,98],[135,113,100],[144,118,106],[144,121,107],[146,120,107],[149,123,110],[150,123,110],[153,125,113],[150,122,110],[150,121,110],[147,117,106],[142,112,101],[138,105,96],[132,99,91],[122,89,84],[109,72,74],[90,48,57],[82,32,45],[88,31,46],[92,30,45],[90,32,46],[87,33,46],[86,30,45],[88,31,46],[90,32,46],[91,30,45],[89,31,44],[89,31,46],[92,31,48],[86,34,47],[92,63,63],[107,97,88],[106,97,88],[100,91,82],[97,90,82],[90,83,80],[57,51,60],[51,48,60],[51,48,58],[51,47,60],[49,47,60],[74,150,172],[68,145,168],[69,140,164],[79,137,162],[80,129,153],[78,124,148],[82,129,151],[87,138,159],[88,145,168],[77,146,165],[82,155,173],[95,166,183],[98,163,182],[92,153,171],[87,149,167],[91,148,166],[95,149,167],[92,146,163],[78,134,148],[86,128,147],[90,113,136],[57,61,76],[44,30,40],[52,40,48],[52,44,59],[66,53,40],[101,74,34],[109,75,33],[108,76,33],[109,77,32],[110,79,33],[111,79,37],[106,78,43],[96,69,46],[105,70,60],[141,99,88],[154,117,98],[158,128,103],[158,133,104],[157,129,108],[134,106,96],[109,85,79],[110,87,83],[99,78,78],[71,52,56],[64,45,52],[70,51,57],[77,57,55],[99,75,72],[97,86,84],[133,145,145],[118,142,152],[48,58,76],[30,30,48],[29,31,51],[29,32,55],[29,34,60],[31,37,66],[31,37,63],[28,34,57],[25,31,56],[30,35,64],[28,33,63],[32,37,66],[29,34,63],[27,32,62],[30,35,65],[27,32,62],[29,34,64],[28,33,62],[29,34,66],[34,39,68],[27,33,59],[30,35,66],[30,35,65],[27,33,61],[34,38,72],[31,36,67],[24,30,52],[27,31,55],[30,34,62],[27,31,60],[32,36,63],[29,31,54],[28,30,52],[30,31,52],[30,31,52],[30,31,50],[30,32,52],[31,32,52],[29,29,43],[30,28,44],[31,30,47],[32,30,47],[32,30,46],[29,28,43],[31,31,47],[34,35,54],[34,35,56],[31,33,53],[53,57,77],[88,86,100],[109,95,95],[131,108,99],[137,115,105],[143,117,106],[143,119,106],[146,120,108],[147,120,108],[149,122,110],[149,121,110],[146,118,107],[145,117,105],[143,113,103],[138,108,97],[131,98,90],[123,91,86],[116,83,81],[102,63,68],[85,39,50],[85,32,46],[88,31,46],[88,30,45],[86,32,45],[84,30,44],[84,29,44],[87,30,45],[88,31,45],[90,30,45],[91,30,45],[91,30,46],[93,31,48],[84,36,46],[98,73,71],[106,97,87],[102,93,84],[98,89,80],[96,89,81],[90,81,79],[57,49,59],[51,46,59],[50,46,56],[50,45,58],[49,45,59],[80,157,175],[80,156,177],[76,149,172],[71,138,161],[70,132,157],[72,129,156],[69,129,153],[70,133,158],[73,139,165],[76,143,169],[85,153,179],[86,157,179],[86,157,177],[88,158,177],[93,159,177],[92,153,173],[91,149,169],[94,152,171],[94,157,173],[95,156,172],[100,153,173],[88,122,138],[60,68,74],[64,55,50],[52,47,53],[59,46,35],[103,72,39],[110,73,35],[111,77,32],[111,78,35],[109,79,40],[103,73,40],[93,63,39],[82,55,35],[92,59,45],[128,88,75],[147,108,91],[156,123,99],[157,129,105],[156,125,106],[137,107,96],[113,87,78],[120,95,88],[107,84,81],[79,59,61],[67,48,55],[77,55,60],[78,57,56],[98,72,69],[96,78,76],[114,114,114],[129,153,160],[73,91,107],[29,30,49],[29,30,50],[29,33,54],[29,34,59],[31,37,65],[31,38,63],[26,31,53],[27,32,59],[32,37,66],[28,33,63],[31,36,65],[29,34,62],[28,33,62],[29,34,63],[28,33,62],[30,35,64],[28,33,63],[31,35,69],[33,38,67],[26,31,56],[31,35,65],[30,34,64],[29,33,63],[35,39,74],[29,34,63],[25,30,52],[28,33,56],[29,33,61],[29,33,61],[30,34,60],[29,29,53],[29,30,54],[30,32,55],[30,32,54],[27,31,52],[30,33,57],[31,32,55],[29,30,44],[29,28,44],[32,29,46],[32,30,46],[31,30,47],[29,28,45],[31,29,46],[34,34,54],[33,34,55],[33,33,53],[41,37,54],[78,67,76],[119,97,95],[133,107,99],[138,114,107],[144,117,109],[144,119,108],[145,119,108],[145,118,108],[145,117,108],[144,116,106],[143,115,105],[141,112,103],[141,111,102],[131,101,92],[127,96,89],[117,87,84],[103,72,74],[92,51,60],[84,33,46],[84,30,46],[85,30,46],[83,29,43],[81,29,42],[82,30,44],[83,29,45],[86,30,46],[86,29,44],[88,30,45],[90,30,45],[90,30,45],[90,32,47],[80,39,45],[105,87,81],[105,95,85],[100,91,82],[96,87,78],[95,88,80],[89,80,78],[58,49,59],[50,45,58],[50,45,55],[49,44,57],[49,45,56],[80,161,182],[85,162,185],[83,156,180],[73,144,166],[72,138,160],[73,135,160],[71,135,160],[72,137,164],[74,140,171],[75,144,170],[79,149,173],[81,152,175],[81,153,176],[83,155,176],[88,158,177],[94,160,180],[99,162,182],[99,162,181],[99,161,182],[98,161,176],[92,157,172],[96,153,169],[86,122,129],[82,85,84],[58,56,60],[55,39,40],[96,67,44],[106,75,30],[110,76,32],[110,78,40],[99,71,42],[85,58,38],[84,51,32],[83,55,32],[91,60,39],[114,76,59],[136,98,83],[147,112,92],[154,123,102],[152,117,99],[139,107,93],[117,88,78],[121,94,85],[111,88,82],[85,64,64],[73,53,60],[85,63,69],[80,60,60],[98,73,72],[101,78,78],[91,80,82],[125,137,145],[103,128,142],[32,40,57],[30,30,50],[29,31,52],[30,35,60],[31,37,65],[31,37,62],[25,30,52],[28,34,61],[31,36,66],[29,34,63],[32,37,64],[27,32,59],[28,33,62],[29,34,63],[30,35,64],[31,36,65],[28,33,64],[33,37,71],[30,34,63],[25,29,55],[32,35,64],[28,34,63],[28,33,63],[33,38,72],[27,33,59],[24,30,50],[28,32,56],[29,33,61],[29,33,61],[29,33,60],[29,29,53],[29,31,55],[29,31,56],[27,31,55],[25,29,53],[30,33,60],[30,31,55],[28,30,45],[28,27,44],[31,28,43],[30,29,45],[27,28,48],[31,29,49],[31,28,46],[32,33,52],[32,32,53],[34,31,48],[42,35,43],[94,77,81],[121,95,92],[134,106,98],[134,110,105],[142,115,109],[141,116,107],[142,115,106],[142,115,106],[143,115,106],[143,114,106],[140,111,103],[137,108,100],[135,105,97],[126,96,88],[120,89,84],[108,79,77],[94,62,68],[81,39,51],[83,30,46],[82,30,46],[81,29,44],[82,30,44],[81,29,42],[82,29,44],[82,29,45],[84,30,45],[86,29,44],[88,30,45],[88,31,45],[87,30,45],[86,33,46],[82,51,52],[105,93,85],[104,94,84],[98,89,80],[96,87,78],[92,84,76],[87,77,75],[57,47,57],[50,44,57],[49,43,54],[47,40,54],[46,40,52],[83,160,181],[92,168,183],[90,168,185],[76,154,175],[71,141,164],[72,136,160],[70,135,160],[72,137,163],[74,140,168],[74,145,169],[76,148,171],[79,151,176],[82,155,177],[84,157,177],[86,159,178],[90,161,178],[96,163,181],[98,163,180],[100,164,182],[97,162,179],[93,159,175],[94,157,174],[98,152,167],[83,111,120],[67,72,80],[53,37,40],[92,64,42],[106,75,32],[104,73,40],[95,67,42],[82,56,37],[80,51,34],[86,52,29],[94,63,31],[103,74,40],[103,70,49],[124,87,77],[140,102,86],[151,115,94],[154,118,98],[142,110,97],[117,85,76],[125,95,87],[114,90,86],[94,74,74],[73,52,58],[90,69,72],[82,60,63],[93,68,72],[99,77,80],[96,77,82],[94,89,100],[120,134,149],[50,62,81],[31,30,51],[31,30,53],[33,34,62],[33,36,66],[33,35,61],[28,30,52],[30,35,61],[31,36,62],[30,34,61],[34,37,64],[28,31,58],[29,32,62],[28,32,61],[30,34,63],[29,34,64],[30,35,64],[33,38,65],[26,32,56],[24,29,53],[30,35,62],[28,32,62],[30,36,67],[31,37,67],[27,32,54],[25,29,49],[27,31,55],[29,34,63],[29,33,62],[30,32,58],[28,28,53],[28,29,56],[28,30,57],[27,31,56],[25,30,54],[30,35,60],[29,32,53],[29,31,47],[28,28,42],[30,28,44],[29,29,48],[28,29,50],[32,31,52],[31,28,47],[32,32,49],[31,31,51],[34,31,47],[63,51,58],[107,88,88],[122,99,93],[131,105,98],[137,109,102],[141,111,104],[139,112,106],[138,111,104],[139,112,103],[138,111,101],[136,110,100],[135,107,98],[135,105,98],[130,100,93],[120,90,84],[111,81,79],[99,71,71],[86,51,58],[78,31,43],[80,28,44],[81,28,44],[80,29,44],[80,29,44],[81,28,44],[83,29,44],[83,29,45],[83,29,44],[83,30,44],[85,31,45],[87,28,44],[89,30,48],[79,35,45],[89,67,63],[105,93,83],[104,93,83],[100,90,79],[95,86,76],[95,84,79],[88,79,78],[53,46,53],[45,40,53],[46,41,53],[46,38,51],[44,38,50],[81,149,178],[91,154,177],[98,165,188],[87,162,183],[73,145,164],[69,137,159],[69,134,160],[72,134,163],[77,136,167],[75,145,168],[75,149,170],[79,151,173],[83,154,173],[87,157,174],[92,158,177],[91,157,176],[95,160,177],[97,161,178],[98,163,182],[97,164,182],[95,163,180],[95,161,178],[93,155,173],[102,141,158],[78,88,103],[55,44,50],[80,58,39],[99,69,36],[87,58,36],[79,53,33],[79,51,32],[83,51,29],[96,62,32],[102,72,34],[101,73,36],[98,67,46],[111,75,71],[131,95,83],[144,107,89],[148,112,93],[141,106,94],[122,91,81],[121,92,85],[117,90,86],[96,74,75],[73,57,58],[94,77,76],[84,64,66],[87,65,70],[91,72,76],[95,78,81],[84,74,84],[90,98,113],[72,86,105],[26,31,52],[29,31,53],[31,35,62],[30,36,65],[29,33,59],[27,31,53],[30,38,64],[30,37,64],[29,35,62],[32,38,65],[25,31,58],[28,34,62],[27,33,61],[29,36,64],[26,35,63],[32,36,66],[31,35,63],[27,31,56],[26,31,57],[30,35,63],[28,33,64],[32,38,70],[30,37,65],[26,30,53],[26,29,49],[27,31,56],[28,33,63],[30,34,63],[28,30,56],[29,30,53],[29,30,55],[30,32,57],[29,31,55],[26,31,54],[31,35,58],[28,31,51],[28,30,46],[27,29,43],[29,28,44],[28,28,48],[28,30,50],[33,33,53],[30,28,47],[31,29,45],[32,29,47],[40,32,45],[91,75,77],[112,92,89],[120,101,95],[130,109,101],[134,110,103],[136,110,104],[137,112,102],[137,110,101],[139,112,103],[137,110,101],[134,108,99],[132,105,98],[131,100,95],[127,93,90],[117,84,81],[102,72,74],[91,60,64],[77,36,45],[80,29,43],[81,29,44],[81,28,44],[80,29,44],[79,28,43],[81,28,44],[82,29,45],[82,28,44],[82,28,43],[84,30,44],[83,30,44],[86,28,44],[88,31,48],[74,36,44],[101,83,77],[106,93,82],[105,92,83],[100,90,79],[96,87,77],[96,84,79],[87,77,77],[51,46,51],[46,41,53],[47,41,54],[44,37,48],[43,37,49],[62,131,156],[72,125,149],[77,130,160],[78,148,177],[82,159,182],[78,149,173],[70,141,166],[67,137,164],[70,140,167],[74,144,169],[78,147,174],[85,149,179],[91,152,181],[94,155,182],[96,157,183],[96,159,183],[94,159,181],[92,160,179],[94,159,178],[97,161,179],[97,162,179],[95,161,178],[93,159,176],[95,153,172],[81,108,125],[63,61,71],[71,52,44],[81,55,35],[75,48,32],[76,50,29],[82,53,27],[96,63,34],[102,70,35],[101,71,33],[96,66,33],[93,62,44],[97,64,59],[117,84,77],[135,101,88],[143,106,90],[138,102,88],[125,93,83],[119,88,81],[120,87,85],[105,77,76],[89,70,69],[100,80,78],[87,64,67],[87,65,71],[88,69,74],[90,73,77],[87,71,81],[75,72,85],[85,90,109],[30,35,57],[30,32,56],[32,35,61],[30,35,63],[28,32,59],[30,33,58],[32,38,67],[30,36,66],[30,35,64],[31,36,65],[27,31,59],[31,35,62],[28,33,60],[31,36,65],[28,34,63],[32,37,68],[28,33,61],[28,33,59],[26,31,58],[28,33,62],[27,34,64],[33,38,68],[31,34,62],[25,28,50],[28,30,50],[28,31,55],[28,33,60],[31,35,60],[28,30,51],[29,30,49],[29,30,51],[31,33,54],[29,32,51],[29,33,51],[32,36,56],[30,34,53],[30,33,50],[30,33,48],[31,32,48],[28,31,49],[29,33,53],[32,34,54],[31,31,49],[33,29,46],[35,30,46],[63,52,62],[100,84,83],[115,96,91],[123,104,97],[129,108,98],[130,108,97],[131,107,98],[133,111,98],[133,109,98],[135,109,100],[134,106,100],[132,104,98],[128,100,95],[125,94,91],[119,86,85],[109,77,77],[93,66,70],[76,47,53],[76,32,44],[81,28,45],[78,29,44],[79,30,43],[79,30,44],[79,29,44],[79,29,44],[80,28,45],[82,29,45],[83,29,46],[82,28,43],[85,28,43],[87,31,47],[81,30,44],[81,49,53],[106,91,83],[107,94,83],[106,93,83],[99,89,78],[97,88,78],[96,84,79],[86,76,76],[51,45,51],[46,41,54],[45,39,52],[44,37,48],[44,38,50],[69,118,148],[42,62,87],[48,63,94],[71,110,149],[68,129,163],[72,140,166],[76,140,166],[81,139,165],[83,137,164],[89,131,165],[83,119,159],[74,107,153],[74,102,152],[72,98,149],[77,99,148],[83,105,152],[86,110,155],[90,116,159],[95,126,165],[98,133,170],[106,143,177],[111,151,184],[106,151,182],[101,153,176],[91,113,131],[66,63,76],[66,52,51],[70,48,36],[75,48,31],[81,53,27],[95,64,34],[101,68,36],[97,68,35],[95,65,32],[93,62,33],[91,61,40],[88,58,45],[105,73,68],[124,89,80],[137,101,88],[135,100,86],[125,93,83],[119,90,84],[118,91,85],[112,87,82],[103,80,76],[101,81,76],[94,72,73],[86,65,70],[86,70,75],[82,67,74],[82,68,77],[75,69,79],[67,70,85],[43,50,71],[28,31,56],[32,37,61],[29,35,61],[27,32,59],[32,35,63],[31,38,67],[30,37,66],[31,38,65],[31,37,63],[28,32,58],[32,36,62],[28,34,60],[30,36,63],[29,35,63],[31,39,67],[27,34,61],[28,37,60],[26,34,59],[28,35,62],[29,34,62],[36,37,63],[31,30,54],[30,28,49],[31,30,48],[31,31,51],[33,34,57],[35,35,55],[38,37,52],[39,39,53],[44,46,61],[42,44,61],[49,51,66],[51,54,69],[56,59,76],[56,59,76],[56,59,76],[53,56,73],[51,53,69],[50,54,73],[51,57,76],[51,55,74],[50,52,69],[46,48,61],[43,43,57],[57,54,65],[72,67,73],[92,83,86],[110,97,98],[122,106,101],[126,108,100],[130,109,102],[130,109,101],[131,108,101],[131,105,99],[133,104,100],[122,94,89],[121,92,89],[118,88,86],[105,77,78],[92,68,69],[75,62,65],[84,64,71],[72,31,45],[81,28,46],[76,30,45],[77,31,42],[79,30,43],[78,29,44],[75,28,44],[78,31,47],[79,30,46],[79,28,45],[79,26,42],[85,31,47],[83,30,45],[79,34,44],[90,66,64],[104,91,83],[106,92,82],[102,89,80],[100,90,78],[96,87,77],[95,83,78],[83,74,74],[50,45,50],[46,40,53],[45,39,53],[45,37,49],[43,37,49],[68,113,155],[56,78,105],[29,43,64],[41,82,108],[63,124,155],[68,122,153],[73,108,140],[57,76,108],[51,57,91],[48,50,86],[50,49,92],[57,54,106],[59,54,113],[59,54,116],[58,57,119],[58,58,118],[59,59,117],[59,60,116],[59,59,118],[60,60,121],[63,64,127],[66,72,131],[67,78,131],[75,88,120],[78,76,97],[66,56,71],[67,59,61],[66,51,40],[82,53,30],[93,63,32],[97,68,34],[97,66,34],[92,63,34],[91,60,32],[92,61,33],[88,59,32],[86,59,36],[97,64,57],[114,81,74],[119,88,78],[120,94,82],[121,100,90],[119,104,95],[109,103,91],[91,85,73],[101,86,77],[91,80,72],[94,83,80],[83,74,74],[80,76,76],[75,76,78],[71,75,83],[65,71,80],[56,69,77],[51,68,81],[27,42,61],[30,46,66],[29,46,67],[26,42,65],[31,46,71],[30,48,73],[30,49,72],[30,49,70],[29,47,66],[27,44,64],[28,43,65],[27,43,66],[28,47,67],[29,46,67],[29,44,66],[27,42,62],[27,42,59],[25,40,59],[30,40,62],[34,36,60],[37,35,56],[35,30,50],[37,33,51],[40,36,52],[44,41,59],[44,42,61],[46,44,59],[48,45,57],[48,48,61],[46,46,61],[52,54,68],[62,63,76],[68,71,83],[62,65,79],[62,63,80],[52,53,71],[47,49,67],[48,50,67],[47,51,68],[44,50,68],[49,52,70],[53,56,70],[60,65,76],[65,68,80],[63,66,79],[57,62,73],[58,61,75],[60,61,73],[63,61,67],[74,67,70],[92,81,83],[112,96,95],[124,104,102],[126,102,99],[124,96,93],[121,92,89],[118,89,86],[109,81,80],[93,71,72],[78,61,63],[85,87,90],[123,118,124],[72,36,52],[77,29,48],[74,30,44],[75,30,40],[78,28,42],[77,28,44],[77,30,47],[75,31,47],[73,27,43],[76,28,44],[82,31,46],[82,30,46],[83,31,45],[80,39,47],[99,81,76],[102,91,82],[104,89,80],[104,91,81],[98,88,76],[95,85,76],[95,83,78],[85,76,76],[50,45,50],[47,42,54],[45,40,53],[46,38,50],[44,38,50],[44,61,105],[65,106,148],[57,94,130],[58,112,142],[69,127,162],[68,101,134],[46,51,80],[39,39,62],[41,37,62],[42,38,62],[46,43,70],[50,45,82],[49,46,89],[53,52,100],[55,50,103],[56,52,103],[55,52,100],[55,52,98],[58,53,101],[60,57,115],[62,62,130],[64,64,126],[63,63,111],[65,57,90],[63,59,77],[60,62,78],[63,63,73],[74,58,52],[94,63,34],[99,65,35],[93,65,34],[91,63,31],[87,60,31],[89,60,34],[89,59,30],[90,61,29],[92,65,38],[90,61,49],[105,84,77],[119,114,100],[137,147,130],[100,118,102],[141,151,140],[135,149,139],[82,106,89],[66,70,55],[75,79,64],[91,93,84],[92,97,85],[75,91,77],[143,167,161],[158,185,198],[163,191,207],[160,189,196],[158,183,195],[152,180,193],[152,183,196],[153,183,201],[152,182,201],[153,182,201],[153,183,203],[153,184,204],[154,185,205],[152,183,203],[152,183,203],[152,180,200],[148,180,195],[148,184,195],[151,182,192],[146,177,185],[145,173,181],[143,172,178],[143,168,179],[115,127,144],[60,62,78],[44,42,54],[44,41,51],[40,38,51],[39,37,54],[38,37,52],[34,36,48],[38,37,51],[40,38,54],[41,40,55],[42,41,55],[49,48,61],[60,60,71],[65,66,76],[63,63,75],[52,49,66],[44,40,60],[43,41,57],[42,40,58],[41,41,57],[40,41,55],[43,43,55],[51,48,59],[61,57,65],[77,70,76],[81,74,81],[64,61,71],[59,59,70],[57,60,70],[64,69,80],[71,74,85],[71,72,85],[60,58,66],[69,59,63],[91,70,71],[113,85,85],[118,89,88],[111,83,81],[98,71,71],[82,62,65],[74,62,67],[113,127,133],[129,145,153],[95,69,87],[72,29,47],[74,28,41],[76,29,41],[80,26,45],[80,28,46],[75,28,44],[71,26,40],[77,29,45],[81,30,46],[82,29,45],[84,30,46],[83,32,47],[89,54,58],[103,91,81],[99,91,80],[103,89,81],[102,89,80],[97,85,73],[96,83,75],[95,81,76],[80,71,71],[52,47,52],[49,44,57],[48,42,55],[46,39,51],[45,39,51]]
[[145,128,78],[160,149,92],[129,99,74],[140,118,73],[163,151,95],[129,101,73],[132,111,66],[169,159,100],[161,148,93],[150,131,84],[133,104,76],[112,89,67],[85,64,51],[115,92,69],[160,136,91],[133,103,76],[140,112,75],[163,140,94],[146,113,80],[140,115,73],[179,175,124],[176,174,131],[168,164,123],[104,99,87],[45,43,54],[41,39,52],[39,37,50],[39,36,47],[39,36,46],[39,36,46],[41,35,46],[39,34,43],[40,35,42],[40,35,41],[40,33,40],[46,35,45],[43,37,46],[49,44,53],[66,54,55],[122,95,68],[175,160,115],[173,156,110],[132,101,66],[175,159,107],[179,166,121],[171,154,108],[136,110,80],[142,129,86],[183,179,129],[181,182,140],[178,176,133],[172,168,122],[167,153,109],[140,109,76],[149,117,82],[160,138,97],[136,103,76],[132,98,61],[160,142,101],[127,102,74],[128,90,63],[153,116,71],[164,141,89],[168,150,95],[161,139,92],[146,117,83],[116,81,64],[88,48,62],[87,46,62],[86,43,59],[84,41,58],[58,35,47],[139,122,74],[161,149,96],[131,103,74],[137,117,70],[165,155,96],[132,105,71],[129,107,65],[173,165,104],[164,153,96],[152,137,87],[134,108,78],[117,90,67],[85,61,50],[117,92,69],[160,140,94],[138,108,79],[136,107,72],[161,140,95],[146,115,80],[138,114,72],[176,172,122],[172,171,131],[124,121,102],[46,44,52],[39,40,51],[40,40,52],[39,37,50],[40,36,48],[41,36,48],[40,35,47],[39,33,46],[41,35,46],[39,32,42],[38,31,40],[44,35,43],[60,49,54],[47,40,48],[47,42,49],[48,43,54],[63,52,54],[156,140,104],[175,159,110],[135,104,69],[177,161,112],[179,168,125],[172,156,116],[141,117,85],[146,133,88],[186,181,133],[183,184,142],[180,178,136],[173,168,122],[168,154,109],[138,108,75],[149,119,83],[162,142,100],[135,105,77],[130,101,62],[158,143,102],[127,106,75],[129,92,63],[153,118,71],[165,143,90],[168,150,95],[163,142,94],[148,120,84],[120,84,67],[86,49,62],[81,47,61],[83,43,60],[82,42,60],[58,34,48],[133,114,68],[159,148,98],[137,110,78],[134,112,69],[165,155,99],[138,109,76],[127,105,65],[171,165,103],[165,155,99],[156,139,90],[137,112,81],[121,92,69],[85,62,50],[120,95,71],[162,140,96],[145,111,80],[137,105,73],[160,139,94],[149,118,82],[142,115,77],[178,174,125],[150,147,122],[53,50,54],[41,39,51],[40,38,51],[40,38,52],[39,37,51],[39,36,50],[38,34,48],[39,34,48],[38,35,48],[38,33,45],[41,32,44],[45,35,45],[52,40,47],[71,53,55],[62,48,52],[47,39,50],[47,40,52],[47,40,50],[90,80,66],[173,153,105],[136,104,67],[178,163,113],[185,175,134],[176,161,125],[143,119,87],[149,137,93],[184,181,135],[185,184,143],[182,178,138],[173,168,123],[167,153,109],[139,110,75],[150,121,83],[162,144,102],[133,103,79],[130,103,65],[155,141,102],[131,108,78],[132,93,64],[155,120,72],[165,142,90],[166,148,95],[164,143,94],[149,119,84],[120,83,68],[91,48,62],[86,47,61],[83,45,61],[80,43,60],[55,36,48],[128,109,68],[161,152,101],[138,112,78],[131,109,68],[165,156,101],[143,115,80],[125,99,62],[171,163,102],[165,156,102],[154,137,91],[138,112,80],[124,93,67],[85,62,51],[122,96,72],[161,141,96],[147,116,81],[136,104,71],[164,142,96],[154,124,89],[147,120,82],[175,168,126],[81,77,76],[44,41,54],[41,39,52],[41,39,53],[41,39,53],[40,38,51],[38,36,49],[40,36,48],[40,34,47],[41,35,48],[46,37,50],[51,39,49],[58,41,46],[70,49,50],[95,65,61],[89,59,61],[57,44,52],[45,41,52],[44,37,46],[50,42,45],[139,120,86],[137,104,67],[178,162,113],[186,178,138],[176,164,125],[142,120,85],[154,142,98],[188,184,139],[187,185,143],[182,178,140],[174,169,126],[167,152,110],[140,110,75],[151,123,84],[164,146,104],[134,103,80],[133,105,67],[155,140,102],[132,111,80],[133,93,64],[157,121,74],[164,140,89],[165,145,98],[163,141,96],[150,119,84],[122,85,68],[91,50,63],[86,48,61],[82,45,61],[79,43,60],[55,35,48],[122,103,68],[169,160,107],[142,117,82],[129,106,68],[167,157,102],[147,120,83],[122,95,60],[173,164,105],[166,159,104],[156,138,93],[142,114,85],[128,95,68],[86,62,51],[127,100,74],[160,142,97],[151,123,85],[137,106,72],[169,150,102],[155,128,90],[144,116,77],[126,116,93],[47,44,52],[43,41,54],[42,40,54],[42,41,55],[39,38,51],[40,39,52],[42,37,51],[41,34,47],[45,37,49],[54,40,50],[70,46,51],[94,59,59],[111,72,65],[129,90,78],[131,91,77],[120,82,73],[84,61,60],[50,40,49],[40,33,44],[41,36,43],[77,61,51],[136,102,67],[180,164,115],[186,179,138],[176,165,124],[142,120,83],[158,147,101],[185,183,136],[185,185,143],[182,178,139],[174,167,126],[167,152,111],[140,110,75],[152,126,86],[165,148,106],[133,104,78],[134,108,69],[154,137,100],[135,112,81],[133,92,64],[157,121,72],[165,139,87],[169,148,99],[162,139,96],[149,119,83],[123,86,67],[92,49,62],[89,48,61],[86,46,62],[82,44,62],[58,36,48],[117,96,66],[167,158,105],[144,122,84],[127,103,67],[171,158,103],[151,126,86],[121,93,62],[172,163,106],[166,158,105],[157,140,94],[146,118,88],[133,102,73],[88,64,51],[129,102,74],[160,142,98],[154,127,90],[138,107,72],[169,151,102],[158,133,95],[140,111,75],[78,70,69],[45,43,54],[45,43,55],[41,40,53],[45,44,57],[42,40,52],[41,40,53],[40,36,50],[49,37,47],[76,51,55],[115,83,80],[143,113,103],[153,123,108],[162,132,112],[163,132,110],[159,125,104],[150,113,95],[117,85,78],[64,47,56],[43,33,45],[38,31,42],[47,35,42],[111,78,58],[181,165,118],[186,180,139],[178,166,126],[149,125,86],[165,152,106],[187,185,138],[187,186,146],[184,182,140],[175,167,126],[168,153,111],[141,109,75],[157,129,89],[166,150,109],[135,106,80],[136,111,70],[153,134,99],[138,115,83],[134,92,64],[159,123,75],[166,139,89],[169,148,98],[162,138,95],[149,118,82],[124,85,67],[94,50,61],[93,49,62],[92,47,64],[86,45,62],[59,37,49],[120,98,68],[169,159,113],[153,132,96],[130,102,71],[170,160,101],[154,131,87],[122,91,61],[173,164,106],[169,160,107],[161,147,97],[147,122,88],[134,106,74],[88,65,53],[131,105,76],[158,141,98],[158,132,92],[138,107,72],[169,152,103],[161,136,96],[125,96,77],[53,47,55],[44,42,55],[44,42,54],[43,41,54],[45,43,56],[43,39,53],[46,42,55],[49,36,44],[107,82,78],[158,138,122],[168,151,134],[173,158,139],[174,160,138],[174,156,134],[170,149,127],[169,144,121],[164,133,110],[140,107,93],[80,62,66],[50,38,50],[38,31,41],[39,32,41],[78,55,46],[182,167,123],[187,181,143],[181,168,132],[163,134,94],[175,161,114],[190,188,142],[190,187,147],[184,182,141],[176,168,129],[170,155,115],[142,110,76],[158,134,93],[167,153,113],[138,110,81],[142,117,72],[151,135,97],[140,119,84],[133,93,64],[159,125,78],[166,139,92],[169,147,98],[162,136,94],[151,119,84],[127,86,69],[97,51,61],[97,50,62],[93,48,64],[87,46,61],[61,38,49],[119,96,68],[162,149,97],[148,125,88],[128,99,68],[171,159,101],[158,136,89],[121,91,61],[173,162,105],[171,163,109],[160,148,99],[145,120,84],[138,107,78],[91,67,51],[137,107,80],[155,139,97],[162,134,97],[141,108,72],[168,153,104],[162,141,99],[103,82,71],[50,44,56],[48,44,58],[45,42,55],[46,42,56],[48,44,58],[45,42,55],[49,39,52],[102,77,74],[168,150,135],[177,163,147],[181,166,147],[180,165,146],[179,164,144],[177,161,139],[173,154,131],[172,153,128],[171,143,120],[148,114,99],[88,66,71],[51,40,51],[40,31,42],[39,31,40],[65,49,44],[183,168,123],[190,182,145],[181,170,135],[160,134,95],[174,162,115],[191,189,142],[190,188,149],[185,182,143],[179,170,131],[171,156,115],[143,111,77],[159,139,97],[170,156,115],[141,111,81],[146,121,73],[150,135,101],[143,122,86],[136,94,65],[161,128,78],[167,143,93],[169,150,102],[165,142,98],[153,123,86],[128,89,70],[99,51,62],[100,49,63],[97,48,65],[93,48,63],[64,37,51],[113,90,64],[169,159,103],[158,142,92],[132,106,69],[173,161,106],[162,140,93],[124,92,62],[172,161,105],[172,164,111],[166,156,105],[154,131,93],[140,110,76],[94,69,54],[139,110,82],[154,138,98],[161,138,97],[142,110,72],[171,156,106],[164,142,104],[86,70,66],[50,46,58],[49,46,59],[45,43,56],[47,43,57],[46,42,56],[50,44,58],[70,46,52],[154,134,118],[179,166,148],[183,170,152],[185,172,154],[183,170,153],[183,168,150],[181,164,145],[177,159,138],[174,157,134],[172,149,127],[157,120,106],[95,69,72],[49,39,50],[42,32,43],[40,32,41],[57,42,41],[178,165,121],[189,182,146],[182,172,138],[160,134,97],[176,165,119],[192,189,145],[192,190,152],[187,185,146],[180,171,130],[170,156,113],[143,112,76],[162,141,100],[171,158,118],[142,114,83],[147,124,76],[150,134,101],[146,126,87],[138,96,66],[161,129,77],[167,144,95],[169,151,104],[167,145,102],[153,124,86],[132,92,69],[104,52,63],[102,48,62],[103,48,64],[96,47,60],[65,38,51],[110,85,62],[168,157,102],[159,144,92],[132,105,69],[172,160,104],[164,146,96],[127,95,64],[169,159,105],[174,167,118],[168,156,108],[158,137,97],[149,116,81],[98,74,58],[140,113,82],[153,138,97],[164,143,102],[143,111,73],[172,156,108],[158,139,102],[76,65,64],[50,46,57],[50,46,60],[47,45,58],[48,45,57],[49,45,57],[54,44,57],[109,78,73],[173,155,136],[186,173,155],[185,172,154],[186,175,157],[188,177,159],[186,172,156],[184,169,152],[179,165,148],[179,166,147],[175,156,134],[163,129,109],[127,95,87],[63,44,52],[40,33,42],[38,32,41],[49,37,41],[166,152,116],[189,183,148],[183,173,139],[167,142,102],[181,168,123],[193,191,146],[193,191,152],[188,185,147],[180,171,134],[171,156,114],[146,113,75],[164,144,102],[174,159,121],[144,116,83],[150,127,80],[149,134,101],[149,129,92],[137,96,65],[164,133,79],[169,147,97],[171,154,108],[168,147,104],[156,128,89],[135,95,74],[104,52,64],[103,49,64],[105,49,65],[100,46,62],[69,37,51],[112,86,61],[166,153,100],[163,147,95],[134,108,69],[170,158,101],[166,151,99],[132,101,68],[167,156,105],[175,170,121],[168,156,108],[160,141,99],[149,118,83],[103,78,59],[140,114,81],[152,136,97],[168,148,105],[145,112,74],[174,157,112],[154,136,104],[69,59,62],[53,47,58],[52,47,59],[49,46,61],[47,44,56],[54,46,57],[62,44,53],[142,111,98],[180,164,142],[187,173,154],[187,173,154],[189,177,158],[187,176,157],[187,174,157],[183,174,158],[177,169,154],[175,161,145],[173,153,135],[166,139,118],[157,120,101],[111,82,77],[46,35,43],[38,32,43],[48,38,44],[149,134,106],[190,184,150],[184,174,139],[165,142,101],[181,170,124],[193,191,149],[193,190,154],[188,185,147],[181,173,136],[171,158,115],[148,115,77],[166,148,105],[175,162,123],[144,117,83],[153,131,83],[147,132,101],[152,132,97],[139,98,68],[163,134,80],[169,149,98],[171,156,109],[168,150,106],[157,131,91],[139,99,75],[106,55,65],[104,50,65],[105,51,67],[104,48,65],[103,45,63],[115,88,61],[162,147,98],[167,152,99],[139,112,73],[167,154,100],[169,154,103],[138,108,70],[166,151,103],[178,173,124],[170,159,112],[162,144,102],[152,124,87],[112,85,62],[140,114,82],[153,136,99],[170,149,107],[148,115,78],[173,156,114],[149,131,105],[67,56,61],[55,47,57],[51,47,58],[49,47,61],[49,45,57],[58,48,58],[81,58,62],[162,135,116],[178,162,139],[185,169,148],[189,173,154],[187,172,154],[183,171,151],[175,158,142],[155,137,124],[145,127,117],[161,141,126],[163,141,123],[163,136,115],[164,132,109],[151,119,102],[62,46,54],[38,31,43],[47,37,47],[128,113,91],[189,183,149],[185,175,140],[166,143,102],[181,172,126],[194,192,151],[192,189,153],[186,184,145],[180,174,136],[172,160,118],[148,117,79],[167,150,108],[176,163,124],[145,117,84],[155,133,85],[148,133,101],[157,135,98],[140,98,69],[165,139,85],[170,151,101],[172,158,111],[169,153,109],[158,134,92],[142,101,74],[108,55,65],[103,51,65],[102,51,67],[101,50,65],[107,47,66],[120,93,65],[157,142,95],[167,156,102],[147,120,81],[165,149,98],[172,156,106],[145,115,77],[165,147,98],[180,174,125],[170,159,113],[166,148,105],[156,127,88],[120,93,67],[141,113,82],[153,135,98],[171,151,109],[148,115,79],[172,154,112],[139,122,98],[64,53,58],[55,46,55],[52,47,58],[50,47,60],[51,43,55],[58,45,56],[71,51,60],[117,93,85],[162,139,120],[181,163,141],[185,168,149],[183,167,147],[177,161,139],[166,148,128],[176,159,142],[189,175,157],[184,169,145],[177,161,135],[176,156,131],[170,144,117],[167,138,114],[81,62,66],[40,31,43],[46,36,48],[107,94,77],[188,180,148],[186,176,141],[166,141,100],[182,172,130],[196,192,154],[192,190,156],[188,186,150],[180,174,139],[174,161,120],[149,118,79],[168,151,110],[176,163,127],[146,117,85],[158,136,88],[146,130,101],[161,138,98],[142,99,71],[167,141,86],[172,153,103],[172,158,113],[171,155,112],[162,137,95],[147,103,76],[113,55,67],[103,52,65],[100,51,66],[100,49,64],[106,49,67],[126,100,68],[152,137,92],[170,158,105],[153,128,87],[163,145,97],[171,158,108],[151,121,81],[164,145,94],[179,175,123],[174,163,117],[167,149,106],[159,130,90],[127,99,71],[137,110,77],[154,135,99],[172,154,111],[152,122,83],[170,152,109],[130,115,94],[60,50,57],[54,47,53],[51,47,55],[54,47,61],[50,45,56],[63,45,51],[124,92,85],[156,129,116],[162,135,114],[175,152,128],[184,167,145],[183,167,144],[175,154,131],[184,167,141],[180,163,143],[152,135,123],[133,110,99],[148,118,101],[167,141,117],[173,151,124],[173,147,120],[104,82,79],[44,33,46],[46,37,49],[89,76,67],[188,180,148],[187,177,143],[163,142,100],[183,177,136],[195,194,159],[193,192,161],[188,187,155],[181,176,144],[174,163,126],[151,120,80],[170,154,113],[176,164,130],[144,117,84],[159,139,89],[145,129,99],[164,142,99],[143,101,71],[169,145,88],[173,154,105],[174,160,115],[172,156,114],[164,140,98],[148,105,77],[117,56,67],[107,52,66],[105,51,67],[106,50,67],[110,50,68],[132,107,72],[148,132,85],[172,160,110],[158,134,90],[162,142,98],[172,158,115],[154,123,85],[164,149,102],[183,180,132],[177,169,126],[170,156,112],[161,137,95],[138,109,79],[134,108,76],[155,138,104],[171,158,114],[156,125,85],[166,148,105],[121,108,88],[59,49,56],[55,45,53],[54,46,54],[54,47,59],[54,44,56],[64,44,51],[122,93,85],[148,124,110],[166,136,118],[173,146,123],[187,172,150],[186,172,153],[175,154,132],[174,151,128],[142,116,106],[119,98,96],[156,131,119],[163,136,119],[178,157,136],[181,162,136],[176,152,124],[129,102,96],[50,40,51],[47,39,50],[78,64,64],[187,178,143],[188,177,145],[167,146,102],[184,176,134],[191,184,147],[189,183,148],[185,177,144],[180,171,138],[175,158,122],[155,121,84],[170,155,117],[177,165,129],[142,116,84],[162,142,92],[145,129,99],[167,146,102],[145,103,71],[172,149,92],[173,158,108],[175,161,118],[174,157,119],[164,142,103],[150,109,80],[116,57,65],[110,52,65],[110,52,69],[107,51,67],[110,50,68],[137,113,76],[145,128,83],[173,163,110],[162,138,90],[161,141,93],[175,163,116],[157,126,85],[165,145,96],[178,170,119],[172,162,116],[165,149,104],[160,134,93],[142,112,80],[131,104,73],[159,142,107],[174,160,118],[159,128,86],[163,145,105],[116,101,87],[57,47,54],[53,42,50],[54,45,53],[53,48,57],[49,41,52],[50,36,43],[86,59,63],[100,76,80],[140,111,101],[176,151,129],[190,178,159],[191,181,165],[182,166,146],[181,164,143],[180,159,137],[178,153,131],[172,149,128],[188,171,152],[189,177,157],[186,169,145],[177,154,126],[140,111,99],[54,44,54],[44,39,51],[70,60,61],[185,175,141],[187,176,142],[167,143,97],[186,177,132],[195,188,151],[191,185,147],[187,178,141],[181,170,132],[175,157,113],[146,112,71],[172,155,117],[177,165,132],[140,115,83],[164,145,95],[142,128,99],[169,149,103],[147,107,73],[171,151,95],[172,155,108],[173,157,114],[166,147,107],[159,138,97],[152,113,85],[115,57,65],[109,53,65],[115,53,67],[113,54,66],[115,52,66],[143,118,78],[142,124,81],[173,166,114],[165,143,96],[160,136,88],[180,171,120],[160,130,87],[160,137,87],[181,172,115],[176,166,113],[171,153,105],[163,138,92],[146,116,78],[126,97,70],[160,145,108],[175,161,120],[160,133,90],[160,140,102],[117,102,90],[56,47,52],[51,42,49],[51,43,51],[49,43,53],[48,38,48],[73,44,49],[136,91,82],[164,122,108],[168,138,122],[183,166,144],[192,182,163],[193,184,169],[185,172,155],[188,176,160],[190,178,161],[192,176,159],[195,182,166],[196,186,171],[194,181,163],[189,170,151],[178,155,129],[135,103,93],[58,45,53],[44,39,53],[63,53,57],[180,170,133],[188,177,141],[163,143,99],[184,178,138],[197,193,159],[192,190,157],[188,182,149],[182,175,139],[177,161,120],[147,112,73],[173,159,120],[177,165,133],[140,114,83],[166,147,96],[142,127,100],[170,150,108],[147,108,73],[171,152,98],[171,154,103],[173,156,109],[171,153,106],[163,136,88],[149,101,74],[117,56,66],[116,54,65],[120,54,68],[119,52,68],[118,53,67],[148,124,83],[140,119,77],[176,167,115],[167,147,100],[159,133,86],[181,172,122],[164,138,93],[157,134,85],[184,175,121],[179,171,121],[173,158,112],[165,144,100],[149,123,83],[122,96,67],[164,146,109],[176,161,122],[163,136,93],[157,136,100],[124,108,96],[57,45,51],[51,41,48],[49,39,48],[47,38,49],[47,34,43],[102,66,66],[161,128,116],[177,155,137],[186,170,155],[188,175,156],[194,186,168],[196,185,169],[192,177,162],[189,179,164],[194,185,170],[199,192,177],[200,194,178],[200,192,176],[198,184,168],[191,172,154],[182,159,134],[131,103,93],[62,50,58],[42,39,54],[58,48,56],[173,162,127],[189,178,140],[162,144,98],[186,179,139],[197,194,161],[192,191,158],[187,182,149],[183,176,141],[178,162,121],[149,117,79],[176,162,125],[178,166,133],[140,113,82],[170,151,101],[142,127,98],[173,153,109],[145,103,67],[171,149,90],[173,157,105],[175,159,113],[173,157,112],[167,140,93],[147,99,71],[118,55,66],[119,54,65],[121,53,67],[123,52,68],[123,53,68],[149,128,85],[135,115,75],[178,168,117],[168,151,102],[157,131,85],[182,173,122],[169,144,98],[156,133,82],[183,176,123],[180,174,125],[173,160,117],[166,145,104],[154,128,85],[122,95,66],[166,148,110],[177,162,123],[166,139,96],[154,132,96],[128,114,97],[54,43,49],[52,41,48],[48,37,46],[45,35,47],[48,33,43],[120,85,79],[179,162,144],[190,176,159],[191,179,160],[194,183,163],[198,190,170],[197,186,168],[193,178,159],[188,172,152],[191,174,155],[198,187,170],[200,191,176],[200,190,174],[196,182,165],[189,171,153],[178,155,132],[119,95,87],[56,46,54],[41,39,52],[56,47,56],[168,155,121],[188,178,140],[164,145,96],[187,179,140],[197,194,161],[193,189,157],[187,180,147],[183,175,140],[178,162,121],[148,118,78],[178,164,130],[178,166,132],[137,112,81],[173,154,105],[142,126,97],[174,153,110],[145,101,69],[171,150,93],[174,160,109],[175,160,115],[174,158,114],[167,141,94],[145,96,73],[117,54,64],[120,53,66],[121,52,65],[124,52,68],[122,52,68],[153,129,85],[133,110,73],[178,169,118],[170,153,105],[155,128,81],[180,170,120],[172,148,101],[158,132,82],[183,176,124],[181,174,126],[174,161,119],[166,148,104],[156,131,87],[125,98,69],[168,149,112],[177,163,125],[167,142,100],[151,127,91],[138,124,104],[54,43,48],[52,40,48],[47,35,45],[42,32,42],[51,34,45],[129,95,89],[186,171,153],[190,177,158],[186,162,138],[192,180,157],[203,193,176],[201,188,174],[190,173,154],[187,169,147],[178,148,130],[182,160,135],[193,174,150],[194,179,157],[191,173,153],[183,162,139],[172,145,120],[103,84,81],[50,44,59],[42,39,55],[58,47,59],[167,153,118],[186,177,138],[162,144,94],[188,180,140],[196,195,160],[193,188,155],[187,179,145],[183,175,139],[178,163,121],[149,119,80],[180,165,133],[179,166,134],[134,110,80],[174,157,108],[141,126,98],[175,154,110],[146,100,68],[170,150,94],[176,161,113],[176,161,119],[174,159,116],[168,143,93],[146,96,73],[120,54,65],[122,51,65],[123,52,65],[125,52,68],[124,51,69],[155,131,86],[131,106,71],[178,168,118],[171,155,106],[155,127,81],[180,169,119],[174,152,105],[159,132,82],[183,174,123],[182,173,127],[174,161,118],[167,152,106],[161,136,92],[129,102,73],[171,153,115],[178,165,129],[170,146,105],[152,127,90],[145,130,110],[52,41,46],[51,38,48],[45,34,44],[41,31,39],[54,36,43],[139,98,88],[185,164,139],[183,152,129],[174,146,120],[189,169,145],[187,163,136],[189,160,136],[168,126,109],[171,128,113],[179,153,138],[184,158,135],[177,142,112],[183,153,120],[180,152,125],[173,143,121],[169,138,115],[93,78,77],[55,52,64],[44,41,54],[62,48,57],[169,156,119],[188,179,137],[163,146,95],[188,181,141],[195,194,159],[192,187,152],[187,178,144],[185,176,140],[179,164,122],[150,122,83],[180,167,136],[179,166,134],[132,108,78],[175,159,112],[142,127,99],[175,155,109],[145,99,69],[171,150,96],[177,162,115],[176,161,120],[173,157,116],[168,143,92],[145,93,73],[123,52,65],[125,52,67],[122,51,66],[123,52,67],[125,52,69],[156,134,87],[128,104,69],[178,168,116],[171,157,107],[154,126,80],[180,167,118],[174,156,110],[159,132,82],[182,175,123],[182,175,128],[176,164,121],[168,152,107],[163,138,94],[126,102,73],[172,154,117],[177,165,128],[172,149,106],[150,125,89],[155,140,116],[50,40,45],[50,37,45],[42,33,43],[40,31,40],[55,36,44],[125,83,71],[177,138,107],[167,124,95],[185,163,135],[194,176,151],[188,164,138],[178,146,121],[177,144,124],[186,163,143],[187,166,145],[182,156,136],[168,126,102],[175,139,103],[171,139,108],[169,140,116],[170,141,117],[80,69,72],[49,45,58],[45,43,55],[61,48,58],[173,162,123],[190,179,136],[163,145,95],[188,182,141],[194,194,158],[192,187,152],[187,178,143],[184,176,139],[180,163,123],[152,124,85],[181,169,139],[180,166,134],[132,107,81],[177,161,113],[144,128,99],[176,153,108],[145,100,71],[171,152,97],[177,162,116],[175,160,118],[173,157,114],[167,141,92],[144,90,72],[123,53,64],[126,53,68],[124,51,68],[123,50,67],[124,49,66],[157,136,89],[126,102,67],[177,165,114],[171,159,109],[154,127,81],[177,164,115],[174,159,112],[159,132,83],[182,175,124],[182,176,127],[177,165,122],[169,153,109],[163,138,91],[124,99,73],[168,151,114],[177,166,128],[172,151,108],[146,119,87],[160,146,120],[48,38,46],[48,33,41],[40,32,41],[42,32,41],[47,35,44],[90,52,50],[153,101,76],[167,124,94],[182,156,131],[196,180,160],[198,181,163],[196,177,156],[194,173,154],[190,163,144],[181,146,129],[156,121,109],[138,96,81],[183,155,123],[178,154,123],[177,151,123],[158,129,111],[72,63,72],[49,42,56],[48,45,58],[63,50,60],[176,165,123],[191,180,137],[164,145,97],[190,182,141],[195,195,158],[192,188,152],[185,179,144],[184,176,139],[181,163,122],[155,128,89],[182,170,145],[180,166,135],[132,107,82],[178,162,113],[149,132,100],[177,153,106],[145,100,71],[171,153,96],[178,161,118],[177,162,121],[174,159,117],[169,141,92],[144,87,69],[124,54,66],[128,52,67],[127,51,68],[122,50,67],[122,50,66],[159,138,93],[125,100,66],[174,162,112],[172,160,111],[157,130,82],[176,158,110],[176,162,115],[160,133,85],[181,173,123],[183,177,129],[177,166,123],[170,154,110],[163,139,94],[124,99,70],[170,155,120],[180,169,132],[172,152,110],[141,115,86],[166,153,124],[47,38,43],[46,34,42],[40,32,40],[42,32,40],[43,34,43],[68,41,45],[145,99,80],[178,145,115],[158,117,99],[154,118,101],[183,153,130],[184,151,135],[182,145,134],[174,134,124],[175,144,129],[153,112,107],[178,148,130],[187,165,134],[182,159,128],[174,148,120],[132,104,95],[53,42,55],[48,41,56],[51,46,60],[62,49,56],[171,157,118],[190,179,138],[164,143,96],[190,183,140],[196,194,158],[194,188,153],[187,180,144],[184,176,139],[180,163,121],[160,134,96],[182,173,146],[182,169,139],[137,113,85],[181,163,117],[152,135,97],[176,152,107],[144,102,72],[173,153,97],[177,161,117],[176,161,121],[175,159,117],[168,141,93],[142,87,70],[125,54,67],[128,52,66],[125,52,66],[116,51,64],[117,49,63],[158,140,93],[127,101,67],[171,158,110],[173,161,113],[161,134,86],[170,152,104],[177,163,117],[160,135,86],[181,171,121],[182,176,130],[178,167,125],[171,155,111],[166,140,90],[125,98,68],[170,155,120],[181,170,133],[174,154,111],[139,112,82],[172,158,127],[47,38,44],[46,35,43],[39,31,39],[45,34,43],[43,33,43],[47,32,39],[126,84,71],[180,150,118],[186,161,138],[178,139,129],[192,168,152],[201,193,178],[199,188,174],[191,171,160],[186,139,136],[177,144,130],[189,169,143],[187,165,134],[182,155,125],[164,130,108],[85,64,67],[49,41,54],[44,40,54],[54,48,62],[59,50,61],[154,137,105],[189,179,139],[163,142,97],[191,183,142],[195,193,158],[194,188,152],[186,179,144],[185,177,140],[179,163,120],[161,138,95],[181,172,138],[181,169,133],[140,117,85],[182,163,120],[151,133,97],[176,151,109],[144,104,71],[173,155,97],[177,162,118],[175,160,118],[175,158,115],[167,138,92],[141,83,70],[120,51,65],[122,51,65],[122,51,65],[120,50,65],[118,50,65],[159,145,100],[131,108,72],[167,151,105],[174,161,114],[163,137,90],[163,145,97],[177,166,119],[162,137,89],[179,168,119],[184,177,131],[178,168,128],[172,154,112],[165,141,91],[124,98,67],[172,155,120],[182,171,135],[174,155,112],[140,113,81],[177,163,131],[47,38,44],[47,36,44],[41,31,40],[46,36,45],[45,38,46],[39,32,41],[80,51,50],[166,132,101],[183,168,138],[190,164,144],[193,154,142],[196,150,144],[197,148,145],[193,141,137],[177,134,122],[186,165,142],[190,174,148],[186,168,137],[176,143,116],[124,91,84],[51,39,52],[45,36,51],[47,42,53],[53,48,62],[57,49,63],[118,107,91],[185,177,141],[159,140,100],[191,183,143],[196,192,159],[193,187,153],[184,178,142],[185,177,140],[179,162,121],[162,138,97],[183,173,140],[181,169,134],[138,116,86],[181,163,124],[147,130,99],[176,151,112],[146,108,72],[173,155,99],[179,161,117],[176,160,116],[174,157,113],[165,135,90],[138,81,70],[113,51,62],[113,49,61],[115,48,63],[117,48,64],[119,48,65],[159,136,95],[133,106,73],[160,142,100],[174,161,115],[164,141,94],[159,138,91],[177,167,120],[166,142,93],[177,167,117],[183,175,131],[178,168,128],[173,157,113],[166,145,96],[123,100,68],[173,155,121],[182,170,135],[175,157,113],[139,111,78],[179,165,135],[51,40,45],[49,35,45],[44,32,42],[47,37,46],[48,39,50],[37,33,42],[42,32,40],[120,86,72],[182,161,129],[193,180,154],[193,170,145],[187,146,124],[178,137,118],[180,142,123],[184,165,143],[195,180,159],[190,170,144],[178,148,122],[142,101,87],[79,54,58],[46,36,51],[42,34,49],[53,46,57],[50,46,61],[56,50,64],[80,76,82],[184,189,181],[180,182,169],[188,188,166],[192,191,163],[191,187,154],[185,178,142],[188,177,142],[178,162,124],[161,142,101],[182,175,144],[181,169,136],[140,117,89],[174,155,117],[148,129,98],[170,142,106],[148,109,72],[174,155,99],[179,161,118],[177,160,117],[172,156,112],[166,137,93],[135,80,70],[114,50,61],[114,48,62],[110,48,63],[109,48,61],[114,48,62],[161,141,94],[138,110,74],[152,133,93],[174,162,116],[165,144,96],[156,132,86],[178,167,121],[168,145,97],[175,164,115],[183,175,133],[178,168,127],[173,156,111],[168,146,97],[122,98,68],[171,152,118],[182,168,133],[175,158,113],[139,112,78],[179,166,136],[48,40,44],[47,35,45],[45,33,44],[46,36,46],[48,41,53],[40,34,46],[37,30,43],[49,36,40],[135,111,92],[193,180,154],[198,190,170],[198,187,169],[197,186,171],[199,186,171],[197,188,170],[192,177,153],[172,137,114],[138,89,77],[117,68,66],[73,48,53],[45,36,47],[42,35,49],[53,47,58],[52,48,64],[57,50,63],[58,53,64],[157,162,161],[187,201,194],[191,205,200],[192,204,196],[193,201,190],[188,193,177],[187,184,162],[175,164,133],[165,147,111],[186,176,146],[182,169,139],[142,119,93],[178,159,123],[147,131,98],[175,151,112],[149,113,73],[174,156,99],[178,160,115],[177,161,117],[173,156,112],[164,135,91],[133,78,71],[111,50,62],[111,48,62],[109,47,61],[108,46,60],[110,46,59],[159,143,98],[142,117,78],[143,124,88],[174,162,115],[167,146,97],[152,127,82],[178,167,121],[170,149,100],[174,161,112],[184,177,135],[181,170,131],[173,158,114],[168,148,97],[120,96,67],[169,151,116],[180,166,132],[173,155,111],[132,107,74],[177,165,132],[50,41,45],[47,35,46],[44,33,45],[44,35,46],[49,40,53],[43,40,51],[36,32,41],[36,32,40],[45,36,43],[128,110,97],[197,184,158],[200,187,165],[198,184,165],[198,181,159],[192,166,142],[162,121,99],[139,79,66],[134,75,64],[129,76,69],[67,48,52],[43,38,49],[43,37,51],[50,44,56],[53,49,66],[62,52,64],[57,52,64],[113,118,122],[178,191,187],[191,208,205],[196,212,209],[196,213,211],[196,213,212],[196,212,208],[194,205,199],[184,187,176],[185,183,163],[181,170,143],[140,119,95],[174,159,126],[151,137,109],[173,149,112],[149,115,74],[173,156,98],[177,160,110],[175,161,115],[174,154,106],[165,129,85],[133,74,70],[111,48,61],[112,46,60],[112,45,60],[109,46,60],[111,43,57],[160,143,100],[145,120,82],[135,114,81],[174,162,117],[168,148,100],[148,122,78],[178,167,121],[173,152,105],[172,158,111],[184,175,133],[182,171,133],[173,159,118],[169,149,99],[122,96,65],[168,150,115],[179,165,130],[172,154,111],[133,108,76],[174,161,131],[62,49,51],[45,35,45],[44,35,46],[44,36,47],[49,39,52],[48,42,54],[37,33,44],[38,31,43],[37,32,43],[42,32,43],[92,71,67],[151,110,91],[168,120,95],[167,118,92],[158,99,74],[153,92,68],[154,95,71],[155,101,74],[140,92,73],[68,48,53],[46,41,55],[41,37,51],[45,39,51],[54,49,63],[60,49,61],[68,61,74],[75,78,85],[168,181,179],[191,211,211],[194,214,215],[196,216,217],[199,218,220],[199,219,220],[198,217,219],[198,217,220],[198,213,212],[188,198,189],[152,141,126],[172,157,125],[156,144,114],[172,146,108],[151,116,75],[174,156,99],[177,160,109],[175,158,112],[173,152,102],[163,126,80],[132,71,69],[118,46,60],[119,45,60],[113,46,61],[109,44,58],[115,43,59],[157,141,98],[146,123,82],[126,103,72],[171,160,115],[167,148,100],[144,116,76],[178,166,122],[172,155,107],[172,155,107],[182,175,132],[180,172,129],[175,161,118],[169,150,100],[127,99,67],[167,149,114],[176,162,128],[172,156,115],[134,111,78],[173,161,132],[65,51,54],[43,36,47],[43,35,46],[45,36,46],[47,38,51],[50,42,55],[41,34,47],[39,31,44],[38,32,44],[37,32,43],[54,38,44],[102,57,52],[157,97,70],[168,114,76],[167,113,75],[168,114,76],[172,127,83],[175,132,89],[150,105,79],[75,52,59],[48,43,54],[42,37,50],[43,36,48],[54,49,61],[58,47,60],[66,60,71],[69,69,81],[143,153,153],[191,211,213],[196,217,219],[198,220,223],[200,222,227],[200,222,228],[200,222,227],[200,221,226],[199,219,221],[196,218,220],[193,202,198],[169,160,140],[160,147,117],[172,144,109],[154,120,74],[175,156,97],[175,159,105],[175,157,109],[173,152,102],[160,124,75],[127,66,65],[111,46,58],[115,45,59],[116,45,60],[117,44,60],[117,43,60],[157,141,100],[148,125,83],[119,95,68],[171,160,114],[169,149,102],[140,112,73],[176,164,119],[173,157,109],[171,154,106],[182,174,132],[180,172,131],[174,161,118],[169,151,98],[132,103,70],[165,148,114],[174,158,127],[177,159,119],[138,116,85],[174,167,143],[85,82,83],[44,40,51],[42,35,48],[45,36,48],[44,36,49],[48,40,53],[44,37,51],[41,33,47],[40,34,47],[37,32,45],[51,35,43],[97,58,56],[149,95,69],[177,131,86],[177,131,86],[178,132,87],[182,145,94],[182,149,100],[163,122,92],[76,54,60],[51,43,54],[47,37,52],[43,35,47],[48,43,54],[56,46,59],[57,49,60],[76,74,87],[113,119,125],[190,210,211],[197,219,221],[198,222,226],[201,225,233],[201,225,233],[202,225,233],[201,225,232],[201,223,231],[201,223,231],[195,215,219],[177,182,179],[161,151,125],[171,140,108],[157,123,77],[176,156,99],[176,158,102],[175,155,106],[172,149,99],[160,119,77],[129,61,64],[116,45,59],[114,43,57],[112,44,56],[116,43,57],[121,44,59],[157,141,102],[148,125,85],[114,90,64],[170,159,112],[170,151,106],[139,111,73],[175,162,116],[174,159,111],[168,153,104],[181,174,135],[181,171,133],[174,161,120],[168,151,98],[136,109,74],[159,144,111],[171,155,124],[176,165,137],[177,181,170],[194,214,209],[118,134,135],[66,65,77],[42,38,52],[44,36,49],[44,36,49],[50,41,54],[46,40,53],[39,34,48],[40,36,50],[37,33,45],[47,34,44],[104,68,61],[146,99,70],[179,145,101],[182,154,107],[186,157,111],[188,160,114],[188,160,114],[176,144,110],[76,58,63],[50,43,55],[49,39,53],[45,36,48],[44,39,51],[56,49,59],[53,48,59],[72,71,83],[86,92,101],[189,209,210],[197,219,222],[199,223,229],[202,228,239],[201,228,238],[202,227,235],[201,226,233],[200,225,232],[200,225,236],[195,216,221],[191,207,207],[180,176,153],[170,139,104],[159,127,83],[176,156,101],[177,156,104],[175,154,104],[170,146,95],[157,118,77],[128,61,64],[117,45,59],[117,45,59],[117,44,58],[120,44,59],[121,42,58],[157,142,104],[149,125,84],[109,84,60],[170,156,111],[169,152,105],[138,110,72],[170,156,113],[174,160,114],[168,152,101],[180,174,134],[180,170,132],[175,160,120],[168,151,100],[142,116,79],[153,136,106],[168,153,128],[186,197,187],[198,226,232],[199,225,229],[147,168,166],[95,100,110],[43,41,54],[44,38,51],[45,37,48],[48,40,51],[45,40,53],[39,37,51],[40,38,52],[40,34,48],[45,34,45],[102,71,63],[165,135,99],[182,160,120],[189,170,133],[191,170,134],[192,171,134],[191,173,136],[179,152,128],[74,58,66],[52,47,59],[51,43,57],[47,38,48],[44,38,51],[54,47,58],[53,48,61],[61,60,73],[77,80,92],[183,202,204],[199,222,225],[200,224,231],[203,230,240],[202,230,240],[203,228,236],[202,227,234],[201,224,230],[201,224,233],[194,215,218],[190,208,210],[187,192,184],[167,137,109],[160,131,84],[176,156,100],[175,154,102],[175,153,105],[169,145,95],[158,120,79],[127,61,65],[115,47,60],[117,45,61],[113,45,59],[114,44,58],[112,43,58],[157,143,105],[151,126,84],[105,80,59],[169,152,108],[167,150,103],[139,111,73],[162,146,106],[174,161,117],[168,153,104],[179,173,133],[179,170,133],[175,160,121],[168,152,104],[150,124,86],[147,131,99],[171,171,157],[202,229,238],[200,229,236],[201,228,234],[170,188,186],[115,124,131],[45,43,57],[42,38,49],[45,37,47],[46,39,47],[46,42,54],[42,39,55],[42,40,56],[43,38,53],[47,37,50],[91,64,63],[171,146,121],[187,170,138],[192,178,147],[193,179,151],[192,178,149],[193,178,150],[171,147,127],[67,56,71],[53,49,64],[53,46,62],[50,42,53],[45,40,53],[50,43,57],[54,49,63],[62,60,74],[71,72,85],[175,194,197],[201,222,228],[201,225,231],[202,229,239],[204,231,242],[201,225,233],[201,226,233],[201,221,226],[201,222,229],[195,214,217],[191,208,209],[186,199,199],[168,146,127],[163,137,89],[174,156,100],[175,156,102],[175,155,107],[171,146,99],[158,122,81],[128,63,68],[114,48,62],[111,46,62],[107,44,59],[110,45,60],[107,41,57],[157,145,105],[149,126,85],[101,77,57],[162,145,102],[166,148,103],[142,114,77],[153,135,96],[172,161,116],[170,155,108],[182,176,137],[181,175,140],[178,168,131],[171,156,115],[157,135,99],[139,126,101],[192,210,209],[203,233,246],[201,231,241],[203,229,236],[181,199,198],[148,162,165],[54,51,65],[45,39,52],[44,37,50],[46,38,48],[46,40,53],[44,41,59],[43,43,59],[45,42,59],[54,43,58],[86,60,65],[167,144,122],[190,176,149],[193,183,157],[194,187,164],[195,187,166],[194,183,162],[155,140,126],[60,53,69],[55,51,68],[54,48,65],[53,46,58],[47,43,58],[48,42,56],[57,52,65],[66,64,79],[68,70,85],[172,190,193],[200,222,230],[202,224,230],[201,229,237],[206,231,243],[200,221,228],[201,222,229],[200,223,228],[197,220,226],[194,213,216],[190,207,211],[184,202,200],[169,158,154],[166,143,96],[177,158,105],[176,156,108],[177,159,117],[172,152,108],[164,136,93],[127,69,69],[109,47,61],[106,45,60],[105,43,60],[101,43,58],[103,40,57],[156,146,105],[147,126,86],[102,77,57],[152,134,95],[165,147,102],[146,118,80],[145,126,89],[171,160,118],[165,148,96],[174,163,117],[172,162,119],[170,157,112],[167,147,104],[151,127,88],[128,116,104],[198,224,229],[202,233,245],[200,230,240],[200,226,233],[192,211,210],[167,182,182],[66,68,80],[46,44,57],[45,40,53],[46,37,49],[49,41,56],[45,42,62],[43,44,62],[46,44,62],[62,51,64],[87,66,73],[160,138,120],[191,180,159],[195,188,168],[196,190,172],[196,192,173],[193,184,165],[132,117,116],[59,52,70],[56,51,70],[55,48,67],[57,51,63],[48,45,61],[48,44,62],[60,53,68],[68,65,81],[67,71,89],[173,189,192],[200,223,231],[203,223,229],[201,225,234],[206,229,240],[199,219,224],[200,224,228],[201,226,233],[197,220,226],[194,213,216],[191,208,209],[187,202,203],[171,166,162],[164,142,98],[173,153,100],[169,147,96],[167,145,99],[166,140,92],[158,123,80],[117,60,64],[106,46,60],[105,44,59],[101,42,58],[98,43,57],[97,41,56],[156,144,105],[146,124,88],[101,78,60],[141,121,88],[162,145,102],[143,117,82],[135,115,80],[170,158,114],[164,147,97],[177,163,118],[174,162,118],[170,156,108],[163,146,101],[153,129,92],[124,118,111],[201,228,237],[200,230,241],[200,229,242],[200,226,236],[197,219,222],[180,196,194],[91,97,107],[51,47,60],[48,42,54],[47,39,52],[48,42,56],[46,44,61],[47,45,62],[46,46,64],[62,53,68],[90,69,75],[162,144,126],[192,184,165],[196,192,173],[198,194,177],[195,193,174],[190,183,167],[112,97,101],[61,54,71],[53,49,67],[51,47,64],[56,52,66],[49,48,65],[48,44,64],[55,49,64],[69,67,83],[67,72,94],[172,189,190],[201,226,235],[202,224,229],[200,226,231],[204,226,233],[197,218,219],[199,225,231],[199,224,231],[198,219,225],[193,212,215],[192,210,210],[189,203,206],[179,183,181],[163,143,98],[171,151,97],[172,148,92],[169,148,95],[169,138,87],[160,119,77],[108,54,58],[99,45,57],[97,42,57],[95,41,55],[94,41,54],[94,40,54],[142,132,102],[140,117,86],[105,80,64],[133,112,86],[161,143,108],[139,116,88],[126,106,80],[167,152,112],[162,143,97],[174,159,116],[172,160,118],[169,154,110],[160,143,97],[151,127,94],[128,130,125],[199,228,241],[198,225,237],[200,231,243],[199,227,238],[200,223,229],[187,203,204],[101,107,117],[56,52,65],[50,44,56],[48,40,53],[49,43,57],[45,44,61],[48,45,61],[49,48,67],[59,51,69],[98,76,81],[167,152,135],[191,186,168],[196,193,176],[199,196,180],[197,194,181],[190,184,171],[100,88,96],[59,53,68],[51,46,65],[50,46,63],[58,54,72],[50,50,71],[49,46,64],[50,48,63],[64,65,85],[66,71,96],[169,187,191],[201,228,237],[200,225,228],[203,229,235],[202,222,227],[195,214,217],[199,225,231],[200,225,232],[196,216,219],[194,214,215],[190,209,210],[189,204,205],[185,198,198],[170,156,122],[167,143,93],[168,142,90],[165,139,93],[166,139,89],[158,123,76],[136,103,77],[126,90,74],[95,49,56],[92,41,56],[92,40,56],[91,39,55],[51,49,52],[89,71,62],[97,76,62],[107,92,74],[115,104,89],[83,75,73],[67,61,62],[102,91,77],[143,122,87],[164,151,108],[170,157,115],[167,151,109],[159,140,98],[147,123,94],[141,148,146],[201,230,241],[197,223,234],[200,228,239],[199,227,238],[201,227,236],[188,206,205],[112,116,126],[61,57,70],[51,45,58],[47,40,52],[49,45,57],[47,44,61],[48,46,60],[51,47,67],[56,50,67],[105,82,85],[173,161,145],[193,188,174],[195,195,180],[199,197,181],[197,196,181],[187,181,170],[98,87,96],[59,52,67],[52,45,62],[50,44,60],[58,56,76],[52,53,77],[51,51,66],[54,51,67],[55,57,78],[65,71,96],[164,183,189],[201,229,239],[199,223,228],[204,231,240],[198,219,222],[192,213,213],[199,224,229],[200,225,230],[191,212,212],[194,214,215],[191,211,212],[188,205,207],[185,200,203],[172,166,146],[160,135,92],[157,136,91],[152,128,91],[152,124,85],[129,100,66],[123,100,66],[152,129,86],[141,111,82],[97,54,56],[90,40,54],[90,39,54],[73,72,62],[81,74,61],[90,82,65],[91,83,70],[91,84,72],[91,85,69],[89,84,69],[96,89,73],[125,112,83],[151,139,101],[162,156,115],[162,155,113],[156,148,110],[143,133,104],[163,178,175],[199,229,240],[200,227,238],[196,221,231],[200,226,238],[200,228,234],[189,209,211],[109,114,124],[62,60,73],[51,45,59],[48,42,54],[52,45,59],[52,48,63],[47,45,62],[51,48,65],[56,50,67],[109,89,90],[176,168,150],[192,190,175],[196,196,181],[199,196,181],[197,196,180],[188,179,166],[101,88,96],[60,50,65],[54,45,62],[50,43,59],[58,54,73],[50,51,72],[54,52,70],[55,54,70],[53,53,73],[64,67,89],[159,175,182],[201,229,239],[198,221,228],[204,230,239],[199,220,223],[192,210,209],[201,224,227],[194,215,217],[195,215,215],[193,213,214],[191,209,211],[187,204,207],[186,201,204],[177,184,174],[168,159,121],[164,157,118],[158,149,114],[158,148,109],[155,144,106],[150,141,104],[155,146,107],[155,146,105],[148,128,102],[93,48,57],[90,38,52],[138,135,102],[141,139,104],[144,142,106],[148,146,110],[151,150,111],[154,153,113],[156,154,118],[158,157,120],[160,161,123],[163,162,126],[164,164,129],[166,165,132],[167,167,136],[168,168,139],[185,205,199],[199,229,242],[200,227,241],[196,221,228],[198,221,231],[198,224,229],[192,213,215],[109,117,125],[64,62,77],[52,48,62],[48,43,56],[51,44,57],[57,52,66],[48,45,64],[52,49,65],[55,51,68],[93,78,85],[174,167,155],[190,189,175],[197,195,180],[199,195,180],[198,196,179],[186,180,163],[112,96,100],[65,53,66],[56,47,62],[51,43,59],[56,50,66],[50,48,67],[52,50,69],[57,56,74],[50,50,69],[62,63,84],[147,161,169],[200,227,237],[198,220,229],[199,223,228],[199,219,223],[189,206,204],[197,217,217],[194,211,212],[195,214,215],[193,211,213],[189,207,209],[187,204,206],[185,201,203],[180,190,189],[165,163,138],[162,159,130],[160,157,126],[158,155,123],[156,152,121],[156,151,121],[152,149,119],[147,145,111],[141,127,106],[94,48,56],[93,39,52],[136,139,106],[138,141,109],[143,145,113],[146,148,115],[149,152,119],[152,156,123],[155,159,127],[157,162,131],[161,165,136],[164,168,139],[165,171,143],[167,173,147],[168,173,151],[170,176,157],[189,209,210],[199,229,244],[199,226,239],[198,223,232],[193,216,221],[198,222,225],[192,211,211],[128,137,143],[65,62,79],[53,51,65],[47,42,56],[46,42,55],[58,55,68],[52,48,66],[50,46,61],[56,50,66],[72,60,73],[148,139,135],[189,189,176],[195,195,179],[197,198,180],[198,198,180],[186,177,160],[142,122,115],[71,59,73],[56,49,61],[50,43,59],[57,51,65],[52,47,65],[52,50,67],[58,57,77],[50,48,64],[60,58,79],[132,143,152],[197,222,230],[198,220,230],[194,214,216],[198,219,221],[185,201,199],[190,209,208],[195,213,214],[194,212,214],[191,209,211],[189,207,209],[187,204,206],[185,201,203],[181,193,196],[168,169,152],[165,162,137],[163,161,134],[160,160,132],[160,159,132],[160,158,132],[158,158,132],[157,157,129],[133,112,102],[91,39,52],[92,37,53],[142,148,111],[145,149,115],[146,152,118],[149,154,120],[153,159,124],[156,163,129],[160,166,135],[163,170,140],[166,172,145],[168,174,148],[170,179,154],[171,181,158],[173,184,163],[174,185,168],[190,212,216],[196,225,238],[197,225,237],[197,221,232],[193,216,218],[193,216,217],[191,210,209],[136,145,151],[64,62,82],[53,51,68],[48,44,59],[43,41,54],[59,55,67],[57,52,69],[51,47,62],[64,55,69],[63,53,70],[100,88,94],[185,181,169],[194,194,177],[200,197,179],[199,197,177],[186,179,160],[161,143,127],[86,71,83],[62,53,65],[52,44,61],[59,52,66],[54,46,63],[50,48,63],[56,55,73],[50,46,65],[57,56,74],[108,113,124],[191,214,219],[200,223,234],[189,206,207],[197,218,221],[187,201,202],[194,211,210],[194,213,213],[193,212,213],[191,209,210],[188,206,208],[186,203,205],[184,200,202],[180,195,196],[169,173,158],[164,163,141],[162,162,138],[162,161,136],[161,159,134],[160,159,133],[157,157,130],[156,155,127],[133,112,101],[92,38,51],[89,38,51],[142,148,113],[143,149,115],[145,150,116],[149,152,119],[153,158,125],[156,161,130],[160,165,137],[163,169,141],[167,173,146],[168,175,150],[171,179,156],[172,183,162],[174,186,167],[175,187,170],[189,212,216],[196,225,238],[195,222,233],[194,219,227],[195,216,220],[192,213,213],[190,212,209],[149,163,167],[63,64,84],[52,50,68],[51,48,62],[42,39,53],[53,48,61],[62,55,71],[53,46,62],[74,60,75],[72,60,75],[71,61,71],[155,146,137],[195,192,172],[200,196,176],[198,195,175],[189,183,164],[171,157,137],[109,93,95],[69,57,70],[53,46,63],[55,47,64],[55,46,62],[50,45,60],[53,51,68],[50,46,63],[52,51,69],[70,73,91],[173,195,201],[199,224,231],[186,204,205],[195,215,217],[185,201,203],[194,211,210],[193,211,213],[192,209,209],[190,208,208],[187,205,207],[185,202,204],[183,199,201],[179,195,195],[170,176,167],[161,163,142],[161,162,141],[160,160,138],[160,160,136],[159,159,134],[155,157,129],[155,155,126],[132,113,102],[86,37,51],[83,36,49],[138,145,112],[142,149,116],[146,154,120],[151,156,125],[154,161,129],[158,163,133],[161,165,139],[165,171,144],[167,173,148],[169,177,153],[171,181,158],[173,184,164],[172,183,164],[173,185,169],[189,211,215],[197,226,239],[194,221,235],[194,219,227],[192,213,216],[191,211,212],[192,213,211],[147,164,168],[64,65,83],[53,51,70],[52,49,63],[43,40,55],[48,43,58],[63,56,72],[59,51,64],[72,56,68],[84,68,80],[69,56,68],[124,108,105],[193,188,169],[197,193,172],[199,195,175],[196,193,173],[178,167,146],[130,110,107],[81,67,77],[54,49,65],[56,49,66],[55,46,62],[50,44,58],[50,46,61],[48,45,63],[51,50,70],[60,61,84],[126,142,156],[195,220,225],[186,206,207],[190,210,212],[185,203,204],[190,206,206],[193,211,212],[192,210,210],[189,207,209],[186,204,207],[184,201,204],[185,200,202],[181,196,198],[169,178,173],[158,161,141],[158,161,139],[159,159,138],[159,158,137],[157,157,134],[154,155,130],[154,153,127],[129,112,102],[84,36,51],[83,35,50],[136,140,107],[140,146,113],[143,150,116],[148,154,122],[152,158,128],[153,163,133],[158,164,139],[163,168,143],[167,173,149],[169,176,155],[171,179,160],[172,181,165],[175,185,168],[178,188,174],[189,210,215],[194,224,236],[195,221,234],[193,217,225],[193,214,218],[191,209,209],[193,213,213],[144,161,168],[66,63,82],[53,52,69],[52,49,66],[48,45,63],[46,43,60],[56,49,64],[76,60,72],[78,59,69],[101,75,85],[72,57,68],[105,90,88],[189,180,161],[193,189,168],[197,195,174],[198,194,174],[194,184,167],[150,128,116],[95,73,82],[59,50,67],[55,49,64],[55,48,63],[51,44,59],[50,43,59],[48,44,61],[47,48,67],[56,55,77],[73,84,111],[185,209,215],[190,210,214],[184,203,204],[185,203,203],[189,205,205],[192,210,210],[191,209,211],[189,207,209],[187,205,207],[185,203,205],[184,199,202],[179,197,198],[179,172,175],[165,111,111],[162,126,118],[163,144,130],[160,156,135],[156,155,131],[154,152,129],[151,150,127],[128,108,102],[84,34,51],[82,34,49],[131,112,95],[138,120,102],[141,127,106],[145,133,112],[149,138,117],[154,143,122],[158,150,129],[162,159,136],[166,168,146],[168,176,153],[171,180,160],[172,182,164],[173,185,168],[174,187,173],[189,210,217],[194,223,237],[193,219,231],[194,217,227],[192,212,219],[189,208,209],[192,214,215],[134,148,157],[68,63,83],[53,52,71],[50,47,66],[50,48,69],[47,45,61],[56,45,58],[98,80,82],[96,72,75],[103,74,81],[75,57,69],[96,78,77],[184,172,153],[189,182,159],[197,193,172],[200,195,177],[195,189,171],[179,165,144],[115,91,93],[67,54,69],[50,47,60],[54,48,62],[52,45,59],[49,43,58],[46,43,58],[46,46,65],[54,52,72],[53,61,89],[153,175,183],[193,213,218],[180,199,202],[185,203,204],[186,202,201],[191,208,209],[190,208,210],[190,208,210],[187,206,207],[185,205,206],[183,201,203],[180,196,198],[178,166,174],[162,53,73],[155,43,62],[146,46,61],[153,65,74],[154,97,93],[158,134,114],[152,148,125],[124,103,98],[80,35,50],[78,32,47],[133,42,56],[137,44,58],[137,46,60],[138,48,61],[141,49,63],[141,47,60],[145,52,63],[149,62,70],[153,79,83],[160,98,98],[168,109,109],[170,112,113],[168,114,114],[167,119,122],[188,203,214],[195,224,241],[195,221,233],[190,214,224],[192,213,220],[188,208,210],[190,213,214],[125,135,146],[64,59,79],[52,51,69],[48,47,67],[49,49,69],[48,45,63],[71,56,63],[128,111,102],[137,113,107],[99,68,74],[77,57,69],[106,81,82],[177,161,142],[185,171,146],[194,188,166],[199,195,175],[197,194,176],[188,180,162],[151,131,121],[80,63,75],[53,47,63],[57,47,63],[52,42,58],[49,42,57],[45,41,57],[46,45,64],[54,52,71],[55,58,85],[124,143,156],[191,213,217],[178,198,202],[182,201,204],[183,199,201],[188,207,208],[189,207,209],[190,208,210],[187,205,207],[186,203,205],[182,199,202],[178,195,197],[179,175,180],[162,55,76],[162,45,65],[147,39,60],[133,35,52],[133,34,51],[138,44,56],[148,85,85],[126,84,87],[79,34,47],[77,32,48],[132,40,55],[133,39,55],[134,39,55],[137,38,56],[142,40,58],[147,43,61],[150,44,61],[154,45,64],[156,45,65],[158,46,65],[160,48,66],[162,49,68],[161,51,69],[159,53,76],[180,179,193],[195,228,246],[196,223,240],[191,216,227],[191,213,220],[187,207,210],[187,210,211],[115,124,135],[58,55,74],[53,50,67],[48,48,68],[50,52,71],[51,47,63],[101,87,87],[162,151,140],[157,139,126],[102,73,75],[75,53,62],[125,99,95],[177,163,144],[178,161,136],[192,184,164],[198,196,177],[197,197,180],[191,189,171],[177,166,151],[94,77,84],[54,48,64],[56,47,63],[51,44,58],[48,40,56],[46,41,57],[45,44,62],[51,49,70],[58,59,83],[104,118,136],[188,211,214],[183,203,207],[180,200,202],[178,194,197],[185,204,205],[185,204,206],[186,204,206],[185,203,205],[185,203,205],[180,199,200],[176,194,196],[175,175,180],[153,55,75],[161,44,64],[160,41,62],[148,39,57],[135,34,53],[126,33,49],[133,34,52],[111,39,53],[78,34,47],[78,33,49],[132,39,56],[134,39,57],[138,38,57],[140,39,58],[141,40,60],[144,40,59],[146,40,58],[147,40,58],[152,42,61],[155,44,64],[158,44,65],[160,44,66],[156,47,65],[156,50,73],[178,173,182],[193,224,243],[194,224,241],[191,217,228],[190,212,218],[186,206,209],[186,208,209],[102,111,121],[55,55,74],[52,47,64],[49,48,66],[49,51,74],[54,50,68],[133,125,125],[179,175,161],[162,148,130],[109,84,85],[85,60,65],[154,132,121],[177,163,146],[177,159,135],[192,184,165],[198,198,182],[199,201,185],[194,196,181],[185,181,167],[120,106,111],[55,50,65],[54,48,63],[50,44,58],[49,41,56],[44,40,56],[44,43,61],[49,48,69],[53,53,75],[84,93,114],[187,208,213],[187,207,211],[179,199,202],[175,192,194],[184,202,204],[184,203,204],[185,203,205],[183,201,203],[181,199,201],[178,196,197],[175,192,194],[175,178,184],[145,55,77],[148,42,61],[149,40,60],[146,41,58],[147,38,57],[138,35,52],[125,39,52],[107,67,71],[77,32,48],[74,32,47],[126,36,54],[130,36,55],[133,38,56],[132,38,56],[130,36,56],[138,39,59],[146,40,60],[148,41,61],[153,43,63],[155,43,64],[156,44,66],[157,44,66],[161,45,66],[156,55,76],[170,166,176],[192,222,237],[190,219,234],[191,218,229],[187,211,216],[185,206,209],[181,201,203],[86,91,105],[56,55,74],[49,44,58],[48,45,62],[49,51,73],[47,49,72],[67,72,107],[114,117,135],[127,117,119],[89,70,77],[106,81,86],[171,160,150],[177,165,154],[171,154,139],[189,184,168],[196,199,185],[192,195,187],[163,167,173],[125,126,144],[81,76,95],[51,49,63],[52,46,61],[48,42,56],[48,41,55],[43,39,56],[43,42,61],[46,47,68],[51,53,74],[64,70,92],[177,197,201],[186,207,212],[178,198,203],[173,188,192],[184,199,201],[182,200,201],[182,200,202],[181,199,201],[180,198,199],[177,196,196],[174,190,194],[174,177,182],[141,57,78],[134,40,59],[124,37,54],[113,33,48],[114,33,48],[119,38,52],[119,89,81],[124,101,97],[76,33,47],[76,32,48],[120,35,53],[125,36,55],[128,36,56],[128,36,54],[129,35,54],[137,38,58],[146,40,61],[145,41,62],[147,41,62],[152,42,65],[152,42,64],[154,43,65],[143,48,68],[101,39,59],[151,152,163],[191,223,239],[191,221,234],[187,213,223],[187,212,218],[182,206,208],[174,192,195],[68,69,85],[57,53,71],[49,42,57],[46,42,60],[52,50,70],[44,48,77],[51,64,113],[51,57,95],[56,51,72],[51,45,66],[55,53,83],[73,79,115],[76,78,114],[77,79,120],[89,99,137],[86,98,139],[64,78,126],[48,62,113],[49,59,108],[55,55,88],[49,48,63],[51,45,60],[48,42,56],[46,41,55],[42,40,58],[43,43,62],[44,46,67],[50,51,74],[52,57,80],[153,171,176],[184,203,209],[177,196,202],[172,187,191],[181,196,198],[179,197,198],[179,197,199],[178,196,198],[178,196,198],[176,194,194],[173,189,192],[172,179,182],[145,63,84],[136,39,59],[133,36,56],[131,36,55],[115,40,52],[118,85,81],[140,136,116],[123,102,95],[76,33,46],[77,32,47],[115,34,53],[117,35,54],[120,35,55],[123,34,54],[126,36,54],[132,38,57],[140,38,60],[140,39,61],[142,39,60],[145,39,61],[152,40,62],[137,43,63],[92,33,47],[88,34,53],[148,141,153],[193,223,241],[191,222,242],[187,214,227],[185,210,215],[182,205,208],[150,163,169],[62,57,74],[51,50,67],[46,41,57],[44,42,59],[50,50,71],[42,48,84],[50,59,103],[47,52,91],[54,52,76],[49,46,71],[47,54,97],[44,52,101],[49,58,105],[46,56,108],[47,58,113],[49,64,117],[45,58,111],[46,59,113],[46,58,109],[53,57,98],[51,47,67],[52,44,61],[50,43,57],[47,41,55],[42,41,59],[42,43,62],[45,45,63],[47,49,69],[49,52,74],[127,140,148],[180,200,204],[175,191,197],[170,188,190],[178,193,196],[178,193,196],[177,194,196],[177,195,198],[177,195,199],[177,195,200],[173,192,194],[172,172,175],[140,53,74],[139,39,58],[135,38,58],[121,36,52],[125,89,83],[144,140,121],[143,137,119],[120,99,95],[72,33,45],[71,30,47],[112,34,54],[114,34,55],[115,35,55],[116,34,53],[121,35,54],[126,36,56],[131,36,58],[134,37,57],[136,38,58],[143,40,61],[146,43,63],[102,35,50],[97,32,49],[109,40,59],[165,170,181],[191,224,243],[191,224,243],[191,220,236],[187,213,222],[182,203,207],[119,127,137],[58,54,73],[49,49,68],[47,41,58],[43,41,58],[47,46,67],[42,46,77],[44,54,94],[49,54,94],[50,51,76],[46,47,79],[42,53,100],[42,51,100],[48,59,113],[43,57,112],[44,55,110],[43,54,106],[43,56,109],[46,59,113],[43,58,111],[50,57,101],[50,48,70],[49,43,61],[50,45,60],[44,41,57],[44,42,61],[42,42,60],[44,43,59],[46,46,64],[50,50,71],[103,113,123],[176,195,199],[171,190,195],[168,186,188],[172,188,191],[177,192,195],[177,194,196],[176,195,196],[179,198,201],[175,190,197],[168,183,185],[170,169,171],[135,51,72],[125,39,58],[114,33,53],[117,35,52],[132,96,90],[141,137,118],[140,134,116],[116,95,92],[70,33,46],[68,31,47],[108,33,53],[110,34,54],[113,34,54],[116,33,53],[120,34,53],[124,36,56],[129,36,57],[131,38,56],[137,38,58],[145,41,63],[127,40,57],[103,30,46],[121,36,55],[118,43,62],[172,178,188],[191,221,236],[187,217,228],[184,208,215],[181,205,209],[179,200,200],[93,95,107],[54,50,67],[51,45,63],[45,40,56],[43,41,59],[44,43,63],[39,43,72],[45,55,103],[47,53,91],[46,47,77],[44,48,83],[43,53,105],[40,48,99],[46,59,116],[43,55,111],[43,56,112],[43,57,109],[42,54,105],[42,55,107],[42,58,112],[46,55,100],[50,49,73],[47,42,61],[53,47,64],[44,41,59],[43,40,59],[41,40,56],[44,41,56],[45,43,58],[49,49,67],[78,87,100],[174,192,194],[170,190,194],[167,184,188],[170,184,188],[175,190,193],[174,192,195],[177,196,200],[177,195,199],[170,185,188],[168,186,189],[168,176,180],[123,64,83],[111,36,54],[120,37,55],[125,38,56],[124,82,80],[137,134,113],[136,131,112],[112,94,90],[67,32,46],[64,31,45],[109,33,53],[109,33,53],[111,34,53],[116,34,53],[121,35,52],[125,36,53],[129,37,55],[135,37,56],[139,39,58],[136,41,61],[104,33,47],[112,36,54],[108,33,53],[107,41,60],[172,188,199],[191,227,247],[191,224,242],[187,217,231],[182,210,220],[172,192,196],[68,70,83],[51,46,61],[48,42,58],[44,40,56],[42,40,59],[41,41,61],[38,43,75],[43,51,96],[44,50,90],[43,49,86],[43,46,80],[43,50,99],[38,47,94],[47,58,114],[38,50,100],[42,53,107],[44,55,107],[37,47,93],[40,51,98],[43,56,107],[44,52,95],[48,49,73],[45,42,60],[50,45,62],[44,41,58],[41,38,55],[40,38,52],[41,37,51],[43,40,54],[49,47,63],[66,72,86],[165,182,183],[170,190,194],[164,181,185],[167,181,184],[171,189,189],[177,195,198],[177,194,199],[170,188,191],[175,193,197],[175,193,198],[172,188,194],[144,101,118],[121,38,57],[124,36,53],[124,36,54],[121,66,69],[137,132,113],[131,127,107],[109,93,88],[67,32,46],[63,31,44],[104,34,52],[107,33,52],[110,34,52],[115,34,52],[120,34,53],[124,36,54],[123,37,55],[122,38,58],[114,36,55],[93,31,47],[87,30,46],[98,31,47],[113,36,53],[119,40,61],[161,169,183],[188,224,245],[193,226,247],[191,226,244],[187,217,230],[157,176,183],[66,67,80],[52,46,60],[48,42,57],[40,38,53],[41,38,56],[40,38,58],[38,39,68],[41,46,80],[38,47,88],[40,46,87],[42,45,79],[42,48,90],[36,44,88],[43,54,105],[35,45,91],[40,50,98],[39,48,89],[36,42,83],[38,45,87],[39,50,96],[40,47,87],[46,46,70],[44,42,60],[46,42,60],[43,40,55],[39,37,51],[39,37,49],[38,35,49],[43,38,52],[48,43,61],[69,74,88],[153,168,169],[169,187,192],[160,176,180],[165,179,183],[174,192,193],[173,191,192],[169,186,188],[173,191,194],[173,194,199],[173,198,205],[176,196,204],[148,112,128],[118,37,56],[120,36,51],[119,35,52],[110,49,56],[134,127,110],[131,125,107],[107,90,85],[66,32,45],[64,31,44],[97,32,50],[101,34,52],[101,33,53],[98,34,53],[92,33,50],[87,31,48],[82,29,45],[84,27,43],[89,28,45],[98,30,49],[109,32,53],[117,36,57],[120,38,56],[106,37,55],[152,144,157],[186,214,226],[184,215,228],[181,209,217],[176,198,202],[136,147,151],[63,57,71],[51,44,60],[46,42,57],[37,35,50],[38,35,53],[41,38,57],[38,37,60],[37,39,69],[36,42,79],[38,42,77],[37,41,76],[39,44,82],[35,42,84],[41,50,95],[34,43,85],[36,47,91],[39,46,89],[34,38,75],[36,42,78],[36,45,83],[38,42,76],[42,42,63],[43,40,57],[44,40,57],[43,39,54],[36,33,47],[38,34,48],[37,33,47],[42,37,50],[45,41,60],[69,77,90],[151,164,165],[166,184,189],[157,171,177],[166,181,186],[172,190,193],[172,192,195],[175,198,202],[179,203,210],[179,202,211],[177,204,210],[167,186,193],[140,105,119],[111,36,54],[113,35,51],[112,34,50],[106,44,53],[131,123,106],[129,121,105],[104,87,84],[65,32,46],[63,30,44],[83,32,47],[78,30,47],[72,29,45],[70,26,43],[73,27,44],[78,29,45],[89,31,48],[97,32,52],[106,33,55],[110,35,55],[112,36,53],[114,36,53],[110,34,51],[93,33,51],[99,63,76],[158,172,175],[167,191,197],[168,191,195],[167,190,193],[135,149,152],[57,54,67],[50,43,59],[42,41,55],[38,36,51],[40,37,55],[41,38,56],[35,34,54],[35,36,60],[34,38,67],[35,37,66],[33,37,66],[36,41,75],[35,42,81],[38,44,83],[36,43,81],[35,44,87],[40,48,94],[33,37,69],[33,38,69],[34,39,71],[35,38,66],[38,39,57],[41,38,53],[40,37,52],[40,37,50],[35,32,44],[38,33,47],[38,33,47],[40,35,49],[39,38,56],[81,94,104],[145,157,159],[164,182,185],[153,169,171],[162,178,180],[164,180,182],[168,188,190],[172,196,199],[172,196,200],[174,195,202],[169,190,196],[159,175,179],[125,77,94],[110,35,53],[110,35,53],[108,33,50],[104,47,56],[130,121,105],[125,117,101],[99,83,81],[62,31,46],[62,30,45],[68,27,42],[65,26,42],[69,27,46],[76,28,48],[82,29,49],[86,30,49],[93,31,49],[98,32,52],[101,32,53],[104,33,53],[105,33,52],[106,33,51],[99,32,49],[85,32,45],[79,33,46],[127,126,134],[172,199,203],[166,168,165],[162,157,151],[144,142,139],[62,57,66],[52,43,57],[45,41,55],[43,39,55],[42,41,58],[41,39,57],[32,32,51],[32,32,53],[32,33,57],[34,34,59],[32,33,57],[34,36,63],[34,38,72],[36,39,74],[33,37,66],[37,43,82],[40,45,85],[34,35,64],[32,34,58],[32,34,60],[34,34,57],[38,37,53],[38,36,50],[39,37,51],[38,34,49],[33,29,44],[36,32,46],[36,32,46],[38,34,48],[36,37,51],[107,120,124],[148,162,163],[163,180,183],[155,173,176],[170,188,192],[172,193,197],[174,197,202],[173,197,204],[176,200,207],[173,197,205],[170,191,195],[159,171,175],[126,79,96],[108,35,53],[106,32,50],[108,34,50],[101,58,61],[125,117,104],[121,113,100],[97,82,80],[60,31,44],[60,30,45],[64,26,42],[67,28,42],[72,28,46],[78,29,49],[81,30,49],[83,31,50],[86,31,49],[88,31,48],[89,32,49],[92,32,50],[95,32,49],[93,33,49],[86,30,46],[79,30,45],[72,31,42],[99,77,88],[167,172,168],[163,142,123],[163,134,116],[140,118,110],[65,53,61],[53,43,55],[45,39,51],[54,49,62],[40,38,52],[38,35,51],[34,32,50],[32,32,51],[31,32,52],[31,31,53],[31,31,54],[32,33,55],[33,36,60],[33,35,59],[32,33,57],[34,38,64],[32,35,60],[33,34,60],[31,33,54],[31,31,51],[32,31,48],[39,36,53],[36,32,47],[39,35,50],[37,33,48],[33,29,44],[35,31,45],[34,30,44],[36,34,48],[37,43,53],[126,137,138],[149,162,164],[162,177,181],[150,163,163],[161,176,175],[167,186,187],[171,192,194],[172,193,197],[171,192,196],[166,187,192],[160,178,182],[160,163,170],[118,66,85],[102,33,50],[107,33,50],[102,33,51],[102,64,66],[121,114,101],[118,110,97],[93,78,78],[54,33,46],[55,32,47],[65,28,43],[68,27,43],[70,28,45],[72,29,46],[73,29,46],[76,29,47],[78,29,47],[80,29,47],[80,30,48],[81,30,46],[80,30,45],[78,29,45],[79,28,45],[73,29,45],[72,29,40],[75,45,53],[152,121,107],[167,133,114],[163,128,112],[142,115,103],[77,58,64],[54,43,53],[43,36,49],[59,55,64],[40,37,51],[36,33,48],[32,30,46],[33,32,51],[33,33,53],[32,33,54],[33,32,58],[32,33,55],[31,33,54],[32,33,54],[33,32,55],[34,33,55],[31,32,52],[32,32,53],[32,32,53],[31,32,51],[33,32,49],[41,37,51],[35,31,47],[38,34,48],[34,30,45],[30,28,42],[33,31,45],[34,29,44],[37,34,48],[44,49,60],[136,147,148],[143,153,156],[157,169,174],[135,143,143],[147,155,153],[149,163,162],[152,167,167],[152,167,172],[150,170,172],[150,169,171],[144,162,168],[124,92,109],[99,33,51],[105,33,50],[101,33,48],[95,31,48],[99,54,59],[119,109,97],[115,106,95],[87,83,83],[53,56,69],[51,55,69],[58,27,43],[61,27,44],[61,27,43],[62,27,44],[65,27,44],[68,27,45],[69,27,45],[69,28,46],[72,30,46],[73,29,46],[73,28,45],[76,29,45],[73,29,44],[70,27,42],[71,30,43],[52,30,39],[133,100,89],[158,115,102],[151,106,99],[132,93,87],[78,55,58],[55,42,52],[43,35,46],[53,46,59],[46,45,58],[33,32,47],[31,30,48],[30,31,51],[30,32,55],[30,33,59],[31,33,58],[30,33,59],[32,34,61],[31,34,62],[30,35,64],[32,34,62],[30,34,60],[31,34,60],[30,33,60],[30,33,57],[32,33,55],[38,37,54],[34,32,49],[37,32,46],[33,29,43],[32,30,44],[32,29,44],[33,29,43],[37,33,49],[49,54,68],[145,158,160],[140,149,152],[146,154,160],[89,79,84],[129,115,111],[144,141,139],[158,166,164],[161,179,183],[158,183,190],[154,178,188],[147,165,172],[106,58,76],[99,34,49],[98,32,49],[94,31,47],[94,31,47],[96,48,54],[118,108,96],[111,101,91],[84,82,82],[55,62,77],[53,59,75],[50,27,42],[53,25,43],[54,25,41],[56,26,42],[59,26,43],[61,27,44],[62,29,46],[86,80,92],[105,114,123],[80,73,85],[60,38,51],[65,30,45],[66,28,41],[72,28,43],[57,28,41],[40,29,38],[115,83,76],[150,108,96],[143,101,94],[128,88,81],[77,53,57],[53,39,50],[44,34,43],[50,43,54],[66,67,81],[41,45,63],[29,30,49],[29,32,53],[30,33,59],[29,34,63],[30,32,58],[29,34,62],[29,34,65],[31,38,70],[30,37,69],[30,35,68],[29,36,66],[31,36,67],[31,37,69],[30,35,64],[33,36,62],[34,36,56],[33,32,52],[36,32,46],[32,28,42],[33,30,44],[31,28,42],[33,29,42],[36,34,51],[49,54,72],[149,163,167],[141,153,155],[127,125,130],[116,92,86],[143,116,101],[150,128,110],[154,129,114],[150,128,117],[146,141,137],[150,163,167],[147,145,156],[98,38,56],[93,32,48],[93,31,47],[94,32,47],[96,31,48],[93,41,50],[115,103,92],[109,100,89],[82,79,82],[56,63,78],[54,61,77],[45,31,48],[48,24,41],[49,25,41],[50,25,41],[52,26,42],[55,26,43],[78,86,99],[130,170,180],[131,169,180],[73,72,86],[50,43,54],[56,41,57],[67,30,43],[58,27,42],[47,28,32],[66,45,36],[109,77,62],[147,102,94],[150,107,95],[140,105,90],[97,73,72],[59,44,51],[55,44,51],[55,45,56],[84,85,95],[57,64,83],[30,31,51],[30,33,54],[31,34,61],[29,35,62],[29,33,58],[29,34,62],[28,35,66],[29,35,67],[30,36,67],[29,34,67],[30,36,66],[30,36,66],[31,38,73],[29,34,62],[31,35,61],[32,35,57],[31,31,51],[34,31,46],[30,28,42],[32,30,44],[32,28,43],[32,28,42],[34,33,50],[42,48,68],[144,160,166],[137,145,148],[127,108,104],[145,119,104],[154,129,110],[155,129,112],[156,129,112],[154,125,110],[144,113,101],[122,94,89],[100,63,73],[90,31,46],[91,30,47],[92,31,47],[92,31,47],[93,31,48],[90,40,49],[111,100,90],[105,96,86],[79,76,77],[56,56,68],[54,54,67],[48,64,82],[43,32,49],[46,25,41],[48,25,42],[46,28,47],[62,76,91],[117,163,177],[118,168,183],[114,162,176],[85,101,117],[54,33,47],[53,48,62],[51,33,46],[53,32,30],[83,57,33],[105,75,32],[113,82,46],[141,102,89],[155,123,100],[150,125,100],[114,91,82],[76,60,62],[62,48,54],[63,47,53],[103,102,103],[81,90,106],[30,32,52],[31,32,54],[31,34,62],[31,36,64],[28,32,58],[29,35,63],[29,34,65],[29,35,66],[31,36,67],[29,35,66],[29,36,65],[29,36,66],[32,39,73],[28,32,58],[30,35,61],[30,35,58],[29,31,51],[33,31,46],[30,29,45],[30,29,44],[33,29,46],[31,27,42],[35,33,51],[34,38,59],[122,135,146],[117,110,112],[140,114,103],[148,125,110],[152,127,112],[154,127,113],[152,125,110],[148,118,105],[136,105,93],[115,77,78],[86,36,49],[89,31,45],[92,31,47],[91,32,47],[92,31,47],[90,30,47],[88,43,51],[108,99,89],[101,92,84],[76,70,73],[51,48,59],[50,48,61],[74,141,165],[72,121,143],[61,88,109],[62,90,109],[75,122,141],[95,159,175],[96,156,175],[95,155,171],[99,152,169],[90,130,149],[67,67,84],[49,37,50],[56,45,48],[97,70,34],[108,77,33],[110,80,36],[106,78,44],[129,91,79],[158,126,103],[156,130,105],[120,95,87],[99,79,78],[67,48,54],[70,52,55],[102,88,86],[118,136,143],[35,39,58],[29,32,53],[30,35,63],[30,36,61],[28,33,59],[30,35,65],[28,33,63],[29,34,64],[29,35,64],[31,36,67],[28,35,64],[28,35,63],[32,38,71],[26,31,54],[29,33,61],[31,34,59],[29,30,52],[30,31,49],[30,31,51],[29,28,43],[32,30,47],[30,28,43],[33,33,51],[32,35,54],[81,86,102],[116,99,95],[140,116,104],[145,120,107],[149,122,110],[149,121,110],[146,117,106],[137,106,96],[123,91,85],[96,55,62],[86,31,46],[89,31,45],[85,31,45],[89,31,45],[90,30,44],[91,31,47],[90,52,57],[105,96,87],[98,90,81],[73,66,69],[51,47,58],[50,46,59],[81,159,180],[76,147,170],[72,133,158],[70,134,159],[74,141,169],[83,153,177],[84,156,177],[92,157,177],[96,156,176],[97,159,176],[94,146,163],[73,82,84],[56,47,47],[104,72,37],[110,77,35],[99,70,40],[86,56,35],[106,71,54],[146,110,91],[155,123,103],[126,97,86],[115,90,84],[76,56,60],[80,59,61],[98,75,74],[115,121,125],[59,72,89],[29,31,52],[30,36,62],[28,34,58],[30,35,63],[30,35,64],[28,33,61],[29,34,63],[29,34,64],[32,36,68],[29,33,60],[29,33,63],[31,36,67],[26,31,53],[29,33,61],[29,31,57],[29,31,55],[27,31,54],[30,33,57],[28,29,44],[31,29,45],[30,29,47],[32,31,49],[33,32,52],[64,54,64],[127,101,96],[140,114,107],[143,117,107],[144,116,107],[143,114,105],[139,109,100],[126,96,88],[106,75,76],[85,38,51],[83,30,46],[82,29,43],[82,29,44],[86,30,45],[89,30,45],[88,31,46],[93,68,66],[102,92,83],[95,87,78],[73,63,67],[50,44,56],[48,42,55],[87,157,180],[88,162,183],[71,140,162],[71,135,161],[75,142,168],[77,150,172],[84,156,175],[90,158,177],[96,162,179],[98,163,181],[94,160,177],[94,140,154],[63,61,68],[94,66,37],[91,63,38],[81,52,33],[94,62,32],[101,71,43],[126,90,79],[149,113,94],[130,98,87],[119,92,86],[84,64,66],[88,67,69],[93,70,75],[92,80,87],[83,95,112],[29,30,52],[32,35,64],[29,32,56],[30,37,63],[31,36,63],[28,32,60],[28,34,63],[29,35,64],[29,34,60],[28,33,59],[29,35,66],[28,34,60],[26,30,52],[29,33,63],[29,30,55],[29,30,56],[27,31,55],[29,33,56],[28,30,45],[29,28,46],[30,31,51],[31,29,47],[34,31,47],[93,76,78],[126,103,97],[137,110,103],[138,111,103],[138,111,102],[134,107,99],[131,100,94],[112,82,79],[88,55,60],[80,29,44],[80,29,44],[80,29,44],[83,29,45],[83,29,44],[85,29,44],[83,33,46],[100,84,76],[102,91,81],[96,85,78],[70,62,65],[46,41,54],[44,38,49],[61,109,135],[68,113,145],[75,144,171],[74,139,165],[79,138,166],[80,131,166],[83,127,166],[88,130,167],[90,136,168],[96,145,173],[103,154,180],[99,154,176],[75,86,101],[72,52,42],[77,50,30],[94,62,33],[99,68,34],[93,63,37],[102,70,62],[135,99,87],[131,97,85],[119,89,84],[102,78,76],[95,74,73],[87,67,73],[85,70,77],[75,75,90],[33,37,60],[31,35,61],[30,33,60],[31,37,66],[31,36,64],[29,34,60],[29,35,62],[30,36,65],[28,34,60],[27,33,60],[31,36,64],[29,30,54],[30,30,51],[32,34,58],[33,34,51],[37,38,57],[40,43,59],[44,47,65],[42,45,62],[40,43,60],[41,45,64],[40,40,56],[50,45,57],[95,83,83],[121,104,99],[129,108,99],[132,109,100],[133,106,100],[126,98,93],[117,86,85],[92,68,70],[77,43,53],[79,29,45],[79,30,43],[78,29,44],[80,29,46],[81,28,44],[85,30,45],[82,45,51],[106,92,83],[102,90,80],[96,86,78],[67,60,63],[45,40,53],[44,37,49],[58,89,128],[46,83,111],[67,119,151],[54,69,98],[46,45,75],[51,48,88],[55,51,105],[57,54,111],[57,56,108],[59,57,114],[64,66,128],[67,71,113],[67,63,81],[67,57,57],[92,61,33],[95,65,33],[90,61,33],[90,60,31],[91,62,45],[114,92,82],[120,115,101],[126,127,116],[85,87,74],[88,84,75],[82,85,78],[112,126,130],[111,130,140],[97,118,133],[91,114,132],[90,113,134],[91,116,138],[91,116,136],[90,112,133],[88,114,131],[88,112,128],[85,107,120],[78,94,111],[44,44,62],[39,35,51],[40,38,54],[41,40,55],[44,43,57],[47,47,61],[64,65,77],[60,60,75],[46,46,64],[44,45,63],[44,46,62],[56,56,68],[72,70,79],[59,61,72],[61,63,73],[77,74,81],[91,79,82],[113,88,87],[117,88,86],[95,71,72],[87,84,88],[105,92,104],[74,29,45],[77,28,42],[77,28,45],[74,28,44],[80,30,45],[83,31,46],[93,66,65],[102,90,81],[100,88,77],[95,83,76],[67,60,62],[47,42,55],[45,39,50]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment