A grid of noisy circles with a face offset being applied to them.
Log in to post a comment.
// You can find the Turtle API reference here: https://turtletoy.net/syntax
Canvas.setpenopacity(1);
// Global code will be evaluated once.
const turtle = new Turtle();
let seed = 1000; // min=1 max=1000000 step=1
const bits = 20;
const samples = 150000;
const mod = 1<<bits;
let border_gap = 0; // min = 0 max = 30 step = 1
let spacing = 10; // min = 5 max = 100 step = 1
let max_radius = 6; // min = 2 max = 20 step = 2
let perlin_grid_size = 3; // min = 1 max = 10 step = 1
let perlin_magnitude = 30; // min = 0 max = 30 step = 1
let face_strength = 7; // min = 0 max = 15 step = 0.1
const f = face();
////////////////////////////////////////////////////////////////
// Pseudorandom number generator. Created by Reinder Nijhoff 2024
// https://turtletoy.net/turtle/a2274fd1fe
////////////////////////////////////////////////////////////////
function random() { // returns a number [0, 1]
let r = 1103515245 * (((seed+=12345) >> 1) ^ seed);
r = 1103515245 * (r ^ (r >> 3));
r = r ^ (r >> 16);
return (r % mod) / mod;
}
////////////////////////////////////////////////////////////////
// Perlin noise field generator. Taken from turtle below
// https://turtletoy.net/turtle/04036becc3
////////////////////////////////////////////////////////////////
class Perlin {
constructor(size, gridSize) {
this.size = size;
this.gridSize = gridSize;
this.grid = [];
for (let i = 0; i <= gridSize; i++) {
let table = [];
for (let j = 0; j <= gridSize; j++) {
let angle = random() * 2 * Math.PI;
let x = Math.cos(angle);
let y = Math.sin(angle);
table.push([x, y]);
}
this.grid.push(table);
}
}
get(x, y) {
x = x / 2 + this.size / 2;
y = y / 2 + this.size / 2;
if (x < 0) x = 0;
if (x >= this.size) x = this.size - 0.01;
if (y < 0) y = 0;
if (y >= this.size) y = this.size - 0.01;
let posx = x * this.gridSize / this.size;
let posy = y * this.gridSize / this.size;
let x1 = Math.floor(posx);
let x2 = x1 + 1;
let y1 = Math.floor(posy);
let y2 = y1 + 1;
let scal = [];
scal.push(this.scalar(posx, posy, x1, y1));
scal.push(this.scalar(posx, posy, x2, y1));
scal.push(this.scalar(posx, posy, x1, y2));
scal.push(this.scalar(posx, posy, x2, y2));
let int1 = this.interpolate(posx - x1, scal[0], scal[1]);
let int2 = this.interpolate(posx - x1, scal[2], scal[3]);
return this.interpolate(posy - y1, int1, int2);
}
scalar(x, y, vx, vy) {
x -= vx;
y -= vy;
return x * this.grid[vx][vy][0] + y * this.grid[vx][vy][1];
}
smooth(v) {
if (v < 0) v = 0;
if (v > 1) v = 1;
return v ** 2 * (3 - 2 * v);
}
interpolate(x, a, b) {
return a + (b - a) * this.smooth(x);
}
}
function circle(radius, steps, x_center, y_center) {
theta = Math.PI * 2 / steps;
turtle.penup();
for(i = 0; i <= steps; i++) {
if(i==1) {
turtle.pendown();
}
let x = x_center + radius * Math.cos(theta * i);
let y = y_center + radius * Math.sin(theta * i);
let x_p = perlin_x.get(x,y) * perlin_magnitude;
let y_p = perlin_y.get(x,y) * perlin_magnitude;
x += x_p;
y += y_p;
if(x > -99 && x < 99 && y > -99 && y < 99) {
// console.log(Math.round((x+100)/2), Math.round((y+100)/2));
let y_f = f[Math.round((y+100)/2)][Math.round((x+100)/2)];
y += y_f * face_strength;
}
turtle.goto(x,y);
}
}
let perlin_x = new Perlin(100, perlin_grid_size);
let perlin_y = new Perlin(100, perlin_grid_size);
for(let i = -100 + border_gap; i <= 100 - border_gap; i+=spacing) {
for(let j = -100 + border_gap; j <= 100 - border_gap; j+=spacing) {
for(let k = 2; k <= max_radius; k+=2) {
circle(k, 100, i, j);
}
}
}
// The walk function will be called until it returns false.
function walk(i) {
// row = Math.floor(i / 100);
// col = i % 100;
// turtle.jump(row*2-100, col*2-100);
// turtle.circle(1-f[col][row]);
// return i < 9999
}
//face encoded at 100x100 array of values 0-1
function face() {
return [[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.83,0.56,0.24,0.2,0.12,0.06,0.1,0.07,0.09,0.06,0.05,0.05,0.07,0.07,0.07,0.08,0.05,0.04,0.05,0.06,0.07,0.08,0.07,0.09,0.09,0.09,0.07,0.09,0.09,0.07,0.09,0.07,0.06,0.07,0.05,0.05,0.06,0.04,0.05,0.04,0.06,0.04,0.08,0.08,0.07,0.05,0.11,0.12,0.12,0.12,0.12,0.18,0.53,0.94,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.83,0.61,0.38,0.19,0.17,0.11,0.09,0.11,0.09,0.08,0.07,0.07,0.06,0.08,0.07,0.09,0.05,0.05,0.08,0.06,0.09,0.1,0.11,0.12,0.09,0.13,0.12,0.1,0.12,0.12,0.09,0.08,0.09,0.09,0.09,0.08,0.07,0.08,0.06,0.06,0.05,0.05,0.04,0.08,0.07,0.07,0.04,0.1,0.11,0.11,0.17,0.14,0.16,0.41,0.78,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.65,0.4,0.25,0.14,0.13,0.1,0.08,0.07,0.07,0.07,0.07,0.08,0.04,0.05,0.07,0.09,0.03,0.05,0.09,0.1,0.1,0.11,0.11,0.11,0.11,0.16,0.19,0.18,0.13,0.18,0.16,0.15,0.13,0.12,0.11,0.09,0.09,0.07,0.07,0.07,0.05,0.07,0.05,0.08,0.07,0.06,0.05,0.1,0.08,0.1,0.13,0.13,0.16,0.26,0.56,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.83,0.44,0.24,0.16,0.12,0.1,0.09,0.07,0.07,0.08,0.07,0.08,0.06,0.05,0.06,0.06,0.05,0.04,0.09,0.13,0.14,0.12,0.13,0.18,0.17,0.2,0.23,0.27,0.25,0.19,0.27,0.23,0.24,0.21,0.18,0.11,0.11,0.11,0.11,0.09,0.07,0.06,0.05,0.05,0.07,0.07,0.05,0.05,0.09,0.09,0.1,0.11,0.1,0.14,0.21,0.48,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.78,0.33,0.16,0.12,0.1,0.08,0.05,0.07,0.07,0.06,0.09,0.07,0.08,0.06,0.07,0.05,0.06,0.08,0.13,0.16,0.17,0.18,0.18,0.25,0.25,0.32,0.37,0.39,0.35,0.33,0.43,0.35,0.38,0.32,0.31,0.23,0.19,0.14,0.11,0.11,0.09,0.07,0.07,0.06,0.05,0.05,0.05,0.06,0.08,0.08,0.08,0.09,0.09,0.13,0.18,0.37,0.84,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.77,0.33,0.15,0.11,0.08,0.08,0.05,0.05,0.07,0.08,0.11,0.07,0.07,0.07,0.08,0.07,0.1,0.14,0.18,0.2,0.22,0.28,0.32,0.37,0.4,0.44,0.47,0.51,0.49,0.5,0.55,0.53,0.46,0.42,0.46,0.39,0.28,0.24,0.16,0.14,0.11,0.09,0.08,0.06,0.07,0.08,0.06,0.07,0.08,0.08,0.1,0.09,0.09,0.13,0.14,0.29,0.73,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.88,0.68,0.32,0.15,0.09,0.08,0.08,0.07,0.07,0.06,0.07,0.09,0.08,0.07,0.06,0.09,0.12,0.17,0.2,0.28,0.33,0.33,0.4,0.45,0.48,0.51,0.56,0.6,0.67,0.64,0.61,0.62,0.6,0.57,0.52,0.56,0.52,0.43,0.36,0.27,0.25,0.19,0.12,0.12,0.08,0.05,0.06,0.07,0.07,0.06,0.09,0.1,0.08,0.07,0.11,0.11,0.24,0.72,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.67,0.44,0.22,0.12,0.08,0.06,0.08,0.08,0.09,0.07,0.06,0.07,0.06,0.08,0.1,0.11,0.16,0.25,0.29,0.4,0.47,0.45,0.53,0.57,0.61,0.65,0.64,0.66,0.72,0.73,0.69,0.68,0.67,0.66,0.62,0.58,0.57,0.53,0.44,0.38,0.33,0.28,0.21,0.15,0.13,0.1,0.09,0.09,0.07,0.06,0.07,0.08,0.08,0.06,0.08,0.11,0.22,0.68,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.57,0.32,0.16,0.11,0.07,0.07,0.08,0.07,0.09,0.09,0.06,0.09,0.09,0.12,0.15,0.16,0.21,0.33,0.4,0.49,0.55,0.56,0.59,0.64,0.68,0.7,0.73,0.73,0.73,0.75,0.74,0.71,0.69,0.68,0.65,0.6,0.53,0.51,0.48,0.45,0.4,0.35,0.26,0.21,0.16,0.12,0.11,0.09,0.09,0.08,0.09,0.08,0.09,0.07,0.05,0.11,0.22,0.67,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.75,0.4,0.2,0.12,0.11,0.09,0.07,0.08,0.07,0.09,0.08,0.09,0.12,0.14,0.18,0.19,0.24,0.29,0.39,0.47,0.55,0.61,0.64,0.65,0.66,0.71,0.74,0.76,0.78,0.78,0.79,0.78,0.76,0.72,0.7,0.67,0.63,0.56,0.54,0.52,0.48,0.43,0.38,0.33,0.26,0.2,0.16,0.14,0.11,0.11,0.09,0.1,0.07,0.08,0.08,0.07,0.09,0.19,0.62,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.62,0.33,0.22,0.09,0.09,0.1,0.08,0.07,0.09,0.09,0.1,0.12,0.15,0.19,0.24,0.24,0.3,0.4,0.49,0.53,0.56,0.63,0.66,0.67,0.68,0.73,0.76,0.79,0.8,0.82,0.82,0.82,0.79,0.76,0.71,0.69,0.66,0.61,0.56,0.53,0.49,0.44,0.4,0.34,0.27,0.22,0.21,0.17,0.15,0.13,0.11,0.1,0.09,0.07,0.09,0.07,0.1,0.21,0.54,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.54,0.28,0.24,0.1,0.09,0.07,0.08,0.07,0.08,0.07,0.1,0.13,0.19,0.19,0.28,0.32,0.37,0.45,0.53,0.56,0.58,0.63,0.66,0.69,0.7,0.74,0.78,0.81,0.83,0.84,0.85,0.84,0.81,0.78,0.73,0.7,0.67,0.65,0.62,0.59,0.54,0.49,0.44,0.4,0.34,0.31,0.26,0.22,0.22,0.19,0.17,0.15,0.11,0.08,0.08,0.08,0.12,0.17,0.44,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.91,0.49,0.3,0.2,0.1,0.1,0.08,0.08,0.08,0.1,0.1,0.14,0.19,0.23,0.26,0.33,0.37,0.42,0.48,0.53,0.56,0.6,0.62,0.66,0.7,0.72,0.76,0.8,0.83,0.85,0.85,0.86,0.85,0.83,0.8,0.75,0.72,0.69,0.67,0.65,0.62,0.57,0.52,0.48,0.42,0.38,0.31,0.29,0.27,0.29,0.27,0.24,0.2,0.14,0.09,0.06,0.08,0.1,0.14,0.35,0.85,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.91,0.51,0.26,0.17,0.11,0.08,0.09,0.09,0.07,0.11,0.15,0.21,0.26,0.29,0.31,0.37,0.4,0.44,0.5,0.54,0.57,0.6,0.64,0.66,0.71,0.74,0.78,0.82,0.85,0.87,0.88,0.88,0.88,0.86,0.82,0.78,0.74,0.71,0.68,0.65,0.62,0.59,0.55,0.52,0.47,0.43,0.38,0.33,0.33,0.34,0.32,0.29,0.25,0.17,0.11,0.08,0.06,0.08,0.15,0.31,0.82,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.59,0.25,0.15,0.09,0.07,0.09,0.09,0.1,0.1,0.16,0.24,0.27,0.32,0.37,0.39,0.41,0.46,0.52,0.55,0.58,0.62,0.65,0.68,0.72,0.76,0.8,0.85,0.87,0.89,0.9,0.9,0.9,0.88,0.84,0.81,0.77,0.73,0.69,0.65,0.62,0.58,0.54,0.51,0.5,0.47,0.44,0.41,0.36,0.33,0.31,0.3,0.27,0.2,0.1,0.07,0.08,0.11,0.15,0.27,0.65,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.73,0.28,0.15,0.11,0.09,0.13,0.1,0.07,0.13,0.2,0.27,0.32,0.38,0.42,0.42,0.42,0.46,0.52,0.55,0.58,0.63,0.67,0.71,0.75,0.78,0.83,0.87,0.89,0.91,0.92,0.93,0.92,0.9,0.86,0.82,0.8,0.76,0.71,0.67,0.63,0.58,0.53,0.51,0.5,0.48,0.48,0.43,0.4,0.38,0.38,0.38,0.34,0.23,0.13,0.11,0.1,0.11,0.14,0.25,0.55,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.87,0.42,0.15,0.1,0.09,0.09,0.11,0.12,0.18,0.24,0.31,0.35,0.41,0.43,0.42,0.43,0.47,0.51,0.55,0.59,0.64,0.69,0.73,0.77,0.81,0.85,0.89,0.91,0.93,0.93,0.93,0.93,0.92,0.89,0.86,0.82,0.78,0.74,0.69,0.64,0.59,0.55,0.52,0.5,0.48,0.47,0.44,0.44,0.42,0.43,0.44,0.37,0.23,0.15,0.11,0.09,0.11,0.14,0.24,0.6,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.62,0.19,0.11,0.1,0.1,0.11,0.15,0.2,0.26,0.33,0.37,0.42,0.43,0.43,0.43,0.47,0.51,0.56,0.61,0.67,0.72,0.76,0.8,0.83,0.87,0.91,0.93,0.95,0.95,0.95,0.95,0.94,0.92,0.89,0.85,0.81,0.76,0.71,0.66,0.61,0.56,0.52,0.49,0.48,0.48,0.47,0.45,0.44,0.45,0.45,0.37,0.25,0.18,0.11,0.09,0.09,0.14,0.27,0.66,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.71,0.25,0.11,0.09,0.09,0.11,0.17,0.21,0.26,0.33,0.39,0.42,0.43,0.43,0.43,0.47,0.52,0.56,0.62,0.68,0.74,0.78,0.82,0.85,0.89,0.93,0.94,0.96,0.96,0.96,0.95,0.95,0.93,0.91,0.88,0.84,0.78,0.73,0.68,0.64,0.59,0.54,0.51,0.48,0.48,0.48,0.47,0.48,0.49,0.46,0.4,0.29,0.21,0.15,0.11,0.09,0.15,0.3,0.79,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.6,0.2,0.12,0.11,0.1,0.1,0.19,0.23,0.3,0.36,0.4,0.43,0.44,0.43,0.44,0.48,0.53,0.58,0.63,0.69,0.74,0.78,0.83,0.87,0.9,0.93,0.95,0.96,0.96,0.96,0.95,0.95,0.93,0.91,0.89,0.85,0.8,0.75,0.7,0.65,0.61,0.55,0.51,0.47,0.47,0.47,0.48,0.49,0.48,0.47,0.42,0.32,0.21,0.16,0.11,0.11,0.16,0.34,0.84,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.87,0.55,0.18,0.13,0.14,0.13,0.13,0.21,0.26,0.33,0.38,0.4,0.43,0.44,0.44,0.45,0.48,0.53,0.58,0.63,0.69,0.74,0.79,0.83,0.87,0.91,0.93,0.95,0.96,0.96,0.96,0.95,0.95,0.93,0.91,0.89,0.86,0.82,0.77,0.73,0.67,0.62,0.56,0.51,0.47,0.45,0.45,0.47,0.48,0.48,0.46,0.42,0.36,0.25,0.19,0.18,0.16,0.16,0.28,0.78,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.88,0.56,0.22,0.15,0.15,0.13,0.16,0.22,0.29,0.35,0.38,0.4,0.42,0.44,0.44,0.45,0.49,0.53,0.58,0.63,0.7,0.75,0.8,0.84,0.87,0.91,0.93,0.95,0.96,0.96,0.96,0.95,0.94,0.93,0.91,0.9,0.87,0.83,0.78,0.73,0.68,0.62,0.56,0.52,0.47,0.45,0.45,0.46,0.47,0.47,0.45,0.41,0.31,0.26,0.24,0.23,0.18,0.17,0.23,0.67,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.64,0.25,0.16,0.16,0.14,0.18,0.24,0.31,0.35,0.38,0.38,0.41,0.43,0.44,0.45,0.49,0.53,0.57,0.63,0.69,0.75,0.8,0.84,0.87,0.91,0.93,0.95,0.95,0.96,0.95,0.95,0.93,0.92,0.91,0.9,0.86,0.82,0.78,0.73,0.68,0.64,0.58,0.52,0.47,0.45,0.45,0.46,0.47,0.47,0.45,0.41,0.34,0.29,0.33,0.3,0.23,0.19,0.24,0.77,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.78,0.32,0.15,0.15,0.16,0.2,0.27,0.34,0.35,0.37,0.38,0.4,0.43,0.44,0.46,0.49,0.53,0.57,0.63,0.68,0.74,0.78,0.83,0.85,0.89,0.92,0.94,0.95,0.95,0.94,0.93,0.93,0.91,0.91,0.89,0.86,0.82,0.77,0.73,0.69,0.64,0.58,0.53,0.47,0.45,0.45,0.45,0.46,0.46,0.45,0.41,0.36,0.35,0.44,0.43,0.27,0.2,0.36,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.91,0.42,0.18,0.17,0.21,0.28,0.34,0.35,0.35,0.38,0.4,0.41,0.44,0.45,0.47,0.5,0.53,0.57,0.63,0.69,0.73,0.78,0.82,0.84,0.87,0.9,0.92,0.93,0.93,0.93,0.93,0.91,0.91,0.9,0.88,0.85,0.81,0.76,0.73,0.69,0.64,0.58,0.53,0.47,0.45,0.44,0.45,0.46,0.46,0.44,0.42,0.4,0.38,0.51,0.49,0.23,0.16,0.5,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.53,0.24,0.22,0.25,0.31,0.37,0.36,0.35,0.38,0.41,0.43,0.45,0.46,0.48,0.5,0.54,0.57,0.62,0.68,0.73,0.77,0.8,0.83,0.85,0.88,0.9,0.91,0.91,0.91,0.91,0.91,0.9,0.89,0.87,0.83,0.8,0.76,0.73,0.68,0.63,0.58,0.53,0.47,0.45,0.45,0.45,0.46,0.46,0.45,0.42,0.45,0.5,0.64,0.55,0.21,0.23,0.67,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.69,0.32,0.25,0.32,0.38,0.42,0.38,0.36,0.38,0.42,0.45,0.47,0.47,0.48,0.5,0.54,0.57,0.62,0.68,0.73,0.77,0.8,0.82,0.85,0.87,0.88,0.89,0.89,0.9,0.89,0.89,0.89,0.88,0.87,0.84,0.8,0.77,0.73,0.68,0.64,0.59,0.55,0.51,0.49,0.48,0.47,0.47,0.46,0.44,0.42,0.45,0.55,0.72,0.6,0.22,0.38,0.74,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.8,0.41,0.28,0.38,0.52,0.51,0.42,0.38,0.39,0.44,0.47,0.49,0.49,0.49,0.5,0.54,0.58,0.63,0.68,0.73,0.76,0.79,0.82,0.85,0.87,0.87,0.88,0.89,0.89,0.89,0.89,0.89,0.89,0.87,0.84,0.81,0.78,0.73,0.69,0.65,0.62,0.58,0.55,0.53,0.52,0.51,0.49,0.47,0.45,0.42,0.47,0.59,0.79,0.62,0.23,0.45,0.86,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.44,0.24,0.38,0.62,0.61,0.49,0.4,0.41,0.46,0.49,0.51,0.5,0.5,0.53,0.56,0.6,0.64,0.69,0.73,0.76,0.79,0.81,0.84,0.86,0.87,0.87,0.87,0.88,0.88,0.89,0.89,0.88,0.87,0.85,0.82,0.79,0.75,0.72,0.68,0.64,0.62,0.59,0.57,0.56,0.55,0.54,0.5,0.47,0.44,0.47,0.63,0.83,0.6,0.28,0.66,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.45,0.2,0.34,0.69,0.7,0.55,0.44,0.44,0.48,0.51,0.54,0.54,0.55,0.56,0.59,0.62,0.66,0.7,0.73,0.76,0.78,0.8,0.82,0.84,0.85,0.86,0.86,0.87,0.87,0.88,0.89,0.88,0.86,0.84,0.82,0.8,0.78,0.75,0.71,0.68,0.67,0.64,0.6,0.55,0.5,0.51,0.52,0.49,0.47,0.49,0.65,0.84,0.56,0.32,0.78,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.54,0.24,0.29,0.69,0.77,0.61,0.49,0.47,0.51,0.54,0.58,0.59,0.6,0.61,0.62,0.65,0.69,0.72,0.75,0.76,0.78,0.8,0.82,0.82,0.83,0.84,0.84,0.85,0.86,0.87,0.87,0.86,0.85,0.83,0.81,0.8,0.79,0.76,0.74,0.72,0.69,0.62,0.47,0.31,0.25,0.25,0.36,0.42,0.47,0.51,0.69,0.84,0.54,0.36,0.79,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.7,0.33,0.27,0.66,0.81,0.68,0.53,0.49,0.51,0.48,0.43,0.45,0.54,0.63,0.66,0.69,0.71,0.73,0.75,0.76,0.76,0.78,0.8,0.81,0.81,0.81,0.82,0.83,0.85,0.85,0.85,0.85,0.83,0.81,0.79,0.78,0.78,0.77,0.76,0.73,0.61,0.42,0.23,0.16,0.16,0.18,0.23,0.19,0.29,0.5,0.7,0.85,0.52,0.45,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.78,0.41,0.27,0.61,0.84,0.73,0.56,0.44,0.35,0.24,0.18,0.19,0.25,0.4,0.57,0.68,0.72,0.74,0.75,0.75,0.76,0.76,0.79,0.8,0.8,0.81,0.82,0.83,0.84,0.84,0.84,0.83,0.81,0.79,0.78,0.78,0.78,0.76,0.72,0.58,0.32,0.16,0.14,0.18,0.27,0.35,0.36,0.26,0.2,0.38,0.69,0.85,0.51,0.44,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.5,0.33,0.61,0.84,0.76,0.51,0.23,0.15,0.19,0.24,0.24,0.16,0.16,0.25,0.45,0.64,0.72,0.74,0.75,0.76,0.77,0.79,0.8,0.81,0.82,0.83,0.83,0.84,0.84,0.83,0.82,0.81,0.79,0.78,0.77,0.74,0.64,0.46,0.25,0.14,0.15,0.3,0.5,0.61,0.64,0.63,0.56,0.45,0.44,0.68,0.85,0.51,0.35,0.76,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.87,0.49,0.35,0.62,0.84,0.76,0.44,0.28,0.35,0.45,0.53,0.55,0.43,0.29,0.18,0.17,0.34,0.54,0.66,0.73,0.76,0.77,0.78,0.8,0.82,0.83,0.84,0.84,0.84,0.84,0.83,0.83,0.82,0.8,0.77,0.65,0.46,0.28,0.18,0.14,0.19,0.39,0.58,0.65,0.67,0.66,0.64,0.62,0.58,0.59,0.72,0.85,0.52,0.34,0.47,0.88,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.94,0.63,0.41,0.35,0.64,0.83,0.78,0.6,0.58,0.6,0.64,0.68,0.7,0.68,0.62,0.44,0.21,0.16,0.2,0.34,0.55,0.71,0.75,0.77,0.81,0.83,0.84,0.84,0.84,0.84,0.84,0.83,0.82,0.81,0.75,0.58,0.31,0.19,0.15,0.17,0.27,0.44,0.59,0.64,0.64,0.62,0.59,0.56,0.53,0.53,0.61,0.73,0.85,0.55,0.31,0.37,0.67,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.83,0.51,0.44,0.39,0.66,0.82,0.8,0.7,0.6,0.59,0.63,0.67,0.71,0.72,0.73,0.67,0.53,0.35,0.2,0.18,0.25,0.45,0.61,0.74,0.8,0.83,0.84,0.84,0.84,0.83,0.83,0.82,0.8,0.77,0.58,0.34,0.25,0.26,0.3,0.37,0.45,0.55,0.62,0.63,0.61,0.56,0.52,0.47,0.45,0.49,0.6,0.72,0.82,0.56,0.31,0.32,0.47,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.78,0.37,0.4,0.38,0.68,0.8,0.78,0.7,0.56,0.53,0.57,0.62,0.64,0.67,0.69,0.71,0.67,0.56,0.45,0.33,0.24,0.26,0.35,0.62,0.75,0.8,0.82,0.83,0.83,0.82,0.81,0.8,0.78,0.73,0.52,0.39,0.41,0.42,0.41,0.44,0.54,0.6,0.61,0.59,0.52,0.45,0.4,0.38,0.39,0.47,0.56,0.66,0.75,0.6,0.36,0.27,0.39,0.88,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.75,0.27,0.33,0.4,0.69,0.75,0.72,0.67,0.57,0.49,0.49,0.51,0.53,0.56,0.6,0.62,0.65,0.62,0.51,0.46,0.44,0.41,0.39,0.54,0.69,0.76,0.78,0.8,0.82,0.81,0.8,0.78,0.75,0.68,0.57,0.5,0.45,0.4,0.42,0.49,0.52,0.5,0.44,0.35,0.26,0.24,0.25,0.31,0.36,0.45,0.5,0.57,0.7,0.63,0.39,0.27,0.37,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.78,0.33,0.37,0.44,0.71,0.69,0.62,0.59,0.56,0.48,0.4,0.35,0.29,0.29,0.34,0.35,0.43,0.49,0.44,0.4,0.41,0.45,0.51,0.56,0.64,0.71,0.75,0.78,0.8,0.8,0.78,0.76,0.71,0.63,0.53,0.46,0.41,0.4,0.4,0.41,0.56,0.63,0.47,0.33,0.26,0.25,0.2,0.2,0.32,0.41,0.43,0.5,0.66,0.67,0.47,0.38,0.42,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.76,0.37,0.44,0.47,0.73,0.66,0.54,0.47,0.48,0.43,0.28,0.16,0.18,0.21,0.2,0.13,0.16,0.26,0.26,0.29,0.33,0.37,0.43,0.51,0.6,0.69,0.73,0.77,0.79,0.79,0.77,0.73,0.67,0.59,0.48,0.42,0.4,0.39,0.46,0.51,0.34,0.24,0.07,0.11,0.17,0.14,0.21,0.24,0.28,0.35,0.4,0.48,0.64,0.7,0.47,0.47,0.44,0.9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.75,0.41,0.48,0.45,0.74,0.63,0.49,0.41,0.37,0.33,0.21,0.15,0.1,0.28,0.34,0.04,0.11,0.15,0.08,0.36,0.36,0.3,0.35,0.43,0.53,0.64,0.7,0.75,0.79,0.8,0.76,0.71,0.64,0.55,0.44,0.39,0.39,0.47,0.51,0.2,0.05,0.09,0.02,0.26,0.62,0.26,0.09,0.15,0.25,0.35,0.43,0.49,0.63,0.72,0.47,0.49,0.45,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.73,0.44,0.49,0.44,0.75,0.61,0.49,0.43,0.36,0.28,0.18,0.07,0.15,0.65,0.68,0.1,0.18,0.22,0.24,0.79,0.53,0.38,0.34,0.36,0.44,0.57,0.67,0.75,0.8,0.8,0.77,0.71,0.62,0.49,0.4,0.38,0.46,0.52,0.75,0.51,0.23,0.37,0.1,0.5,0.81,0.38,0.07,0.17,0.32,0.42,0.48,0.51,0.62,0.74,0.48,0.49,0.44,0.87,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.74,0.42,0.51,0.46,0.74,0.6,0.5,0.47,0.45,0.38,0.27,0.11,0.13,0.57,0.85,0.45,0.29,0.32,0.62,0.9,0.75,0.49,0.47,0.38,0.42,0.54,0.66,0.74,0.81,0.83,0.78,0.71,0.61,0.5,0.4,0.45,0.48,0.6,0.8,0.81,0.42,0.24,0.38,0.76,0.55,0.2,0.17,0.29,0.42,0.5,0.53,0.53,0.62,0.74,0.5,0.51,0.45,0.88,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.78,0.45,0.53,0.48,0.73,0.61,0.52,0.52,0.52,0.5,0.43,0.26,0.17,0.24,0.45,0.57,0.44,0.49,0.61,0.6,0.56,0.48,0.51,0.46,0.44,0.55,0.67,0.75,0.84,0.85,0.8,0.72,0.63,0.54,0.49,0.55,0.53,0.58,0.62,0.62,0.59,0.48,0.47,0.36,0.24,0.2,0.26,0.4,0.52,0.56,0.56,0.56,0.62,0.73,0.54,0.5,0.51,0.9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.83,0.51,0.51,0.52,0.72,0.63,0.53,0.54,0.56,0.58,0.55,0.4,0.3,0.34,0.37,0.4,0.48,0.55,0.58,0.63,0.62,0.62,0.69,0.53,0.51,0.59,0.68,0.78,0.86,0.88,0.83,0.74,0.65,0.58,0.54,0.62,0.66,0.62,0.6,0.6,0.6,0.52,0.49,0.43,0.39,0.28,0.33,0.51,0.59,0.61,0.59,0.56,0.62,0.73,0.54,0.47,0.62,0.93,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.6,0.5,0.55,0.72,0.65,0.54,0.55,0.58,0.62,0.62,0.55,0.44,0.41,0.47,0.52,0.58,0.6,0.61,0.63,0.68,0.71,0.71,0.62,0.6,0.64,0.7,0.8,0.88,0.9,0.86,0.77,0.67,0.62,0.62,0.67,0.71,0.71,0.69,0.65,0.6,0.56,0.51,0.45,0.41,0.43,0.54,0.62,0.64,0.64,0.6,0.57,0.62,0.72,0.48,0.53,0.71,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.94,0.7,0.53,0.5,0.69,0.68,0.54,0.55,0.58,0.64,0.67,0.66,0.62,0.59,0.58,0.6,0.62,0.66,0.71,0.75,0.77,0.77,0.75,0.71,0.67,0.68,0.73,0.82,0.9,0.91,0.88,0.79,0.69,0.65,0.69,0.73,0.77,0.77,0.78,0.77,0.74,0.7,0.67,0.63,0.62,0.64,0.67,0.69,0.67,0.65,0.6,0.56,0.62,0.7,0.48,0.6,0.78,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.78,0.6,0.48,0.66,0.71,0.55,0.54,0.58,0.65,0.7,0.73,0.74,0.75,0.75,0.76,0.77,0.8,0.81,0.81,0.82,0.82,0.8,0.77,0.72,0.71,0.76,0.85,0.91,0.93,0.9,0.82,0.71,0.66,0.71,0.76,0.8,0.82,0.82,0.81,0.8,0.78,0.77,0.75,0.73,0.73,0.73,0.72,0.69,0.65,0.58,0.55,0.61,0.69,0.52,0.64,0.87,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.69,0.58,0.62,0.72,0.55,0.54,0.58,0.64,0.7,0.75,0.78,0.8,0.81,0.82,0.83,0.85,0.85,0.85,0.85,0.84,0.83,0.8,0.75,0.72,0.77,0.86,0.92,0.94,0.92,0.84,0.73,0.67,0.72,0.77,0.8,0.83,0.83,0.83,0.82,0.81,0.8,0.79,0.78,0.78,0.77,0.75,0.7,0.63,0.56,0.53,0.6,0.66,0.52,0.71,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.77,0.61,0.54,0.72,0.55,0.53,0.56,0.64,0.7,0.75,0.8,0.81,0.82,0.84,0.85,0.86,0.86,0.86,0.86,0.85,0.84,0.81,0.75,0.73,0.77,0.85,0.92,0.94,0.92,0.84,0.74,0.67,0.71,0.78,0.82,0.83,0.84,0.84,0.83,0.83,0.82,0.82,0.81,0.81,0.79,0.74,0.68,0.6,0.53,0.51,0.6,0.64,0.53,0.83,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.67,0.52,0.72,0.56,0.52,0.54,0.61,0.69,0.75,0.8,0.83,0.84,0.85,0.85,0.86,0.87,0.87,0.86,0.85,0.83,0.8,0.75,0.72,0.76,0.85,0.92,0.94,0.91,0.84,0.73,0.67,0.69,0.76,0.81,0.83,0.84,0.84,0.84,0.84,0.84,0.82,0.82,0.81,0.78,0.72,0.65,0.56,0.5,0.5,0.6,0.68,0.77,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.66,0.74,0.58,0.51,0.52,0.58,0.66,0.73,0.79,0.84,0.86,0.86,0.87,0.87,0.87,0.87,0.86,0.85,0.83,0.8,0.74,0.7,0.75,0.84,0.91,0.94,0.91,0.84,0.73,0.65,0.67,0.74,0.79,0.82,0.84,0.85,0.85,0.84,0.84,0.83,0.82,0.79,0.75,0.68,0.6,0.52,0.48,0.49,0.63,0.85,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9,0.83,0.62,0.51,0.51,0.55,0.63,0.71,0.77,0.83,0.86,0.87,0.87,0.87,0.87,0.87,0.85,0.84,0.81,0.78,0.72,0.67,0.72,0.83,0.91,0.93,0.91,0.83,0.71,0.62,0.62,0.71,0.76,0.8,0.82,0.84,0.84,0.84,0.84,0.82,0.8,0.77,0.72,0.65,0.56,0.49,0.46,0.47,0.68,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.67,0.51,0.49,0.53,0.6,0.68,0.75,0.82,0.85,0.87,0.87,0.87,0.87,0.87,0.85,0.82,0.78,0.73,0.68,0.65,0.71,0.83,0.9,0.92,0.91,0.83,0.71,0.59,0.57,0.65,0.74,0.79,0.81,0.83,0.84,0.84,0.82,0.82,0.78,0.75,0.7,0.63,0.54,0.48,0.45,0.48,0.75,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.75,0.52,0.49,0.51,0.58,0.65,0.73,0.8,0.85,0.87,0.87,0.88,0.87,0.86,0.84,0.8,0.75,0.68,0.64,0.64,0.72,0.83,0.89,0.92,0.91,0.83,0.71,0.58,0.51,0.56,0.69,0.76,0.81,0.83,0.84,0.83,0.82,0.8,0.76,0.73,0.68,0.61,0.52,0.46,0.44,0.51,0.84,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.82,0.55,0.49,0.49,0.55,0.63,0.71,0.78,0.83,0.85,0.87,0.88,0.88,0.86,0.83,0.76,0.66,0.6,0.61,0.64,0.74,0.83,0.9,0.93,0.91,0.83,0.71,0.6,0.51,0.47,0.59,0.74,0.8,0.82,0.83,0.82,0.81,0.79,0.75,0.71,0.65,0.58,0.49,0.44,0.44,0.56,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.89,0.6,0.49,0.48,0.53,0.6,0.68,0.75,0.8,0.83,0.86,0.87,0.87,0.85,0.82,0.72,0.55,0.57,0.63,0.67,0.76,0.85,0.93,0.95,0.91,0.84,0.73,0.65,0.6,0.51,0.54,0.72,0.8,0.82,0.82,0.81,0.8,0.78,0.74,0.69,0.63,0.55,0.47,0.43,0.44,0.63,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.94,0.69,0.49,0.47,0.51,0.57,0.65,0.73,0.77,0.81,0.85,0.86,0.86,0.84,0.8,0.67,0.55,0.65,0.69,0.73,0.78,0.86,0.93,0.95,0.91,0.84,0.75,0.7,0.68,0.64,0.56,0.72,0.8,0.82,0.82,0.81,0.79,0.76,0.72,0.67,0.6,0.51,0.44,0.42,0.46,0.72,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.77,0.52,0.47,0.49,0.54,0.62,0.7,0.76,0.8,0.84,0.85,0.85,0.83,0.78,0.67,0.64,0.73,0.75,0.76,0.78,0.84,0.9,0.91,0.88,0.8,0.73,0.72,0.72,0.69,0.62,0.72,0.8,0.82,0.81,0.8,0.77,0.74,0.7,0.64,0.56,0.47,0.43,0.42,0.51,0.81,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.84,0.58,0.48,0.47,0.51,0.58,0.66,0.74,0.78,0.82,0.85,0.85,0.83,0.79,0.68,0.68,0.77,0.8,0.77,0.75,0.78,0.85,0.87,0.84,0.75,0.71,0.73,0.74,0.69,0.62,0.74,0.8,0.81,0.81,0.78,0.75,0.72,0.67,0.6,0.51,0.44,0.41,0.43,0.6,0.88,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.89,0.67,0.49,0.45,0.48,0.53,0.62,0.71,0.76,0.81,0.84,0.85,0.83,0.8,0.68,0.66,0.74,0.76,0.72,0.66,0.7,0.8,0.83,0.76,0.67,0.64,0.68,0.67,0.6,0.57,0.75,0.81,0.81,0.8,0.77,0.73,0.69,0.63,0.55,0.47,0.42,0.4,0.47,0.68,0.93,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.75,0.55,0.44,0.44,0.5,0.57,0.67,0.74,0.78,0.83,0.84,0.83,0.81,0.69,0.55,0.48,0.36,0.37,0.49,0.6,0.68,0.69,0.64,0.56,0.44,0.35,0.38,0.39,0.53,0.77,0.8,0.81,0.79,0.76,0.71,0.65,0.59,0.51,0.45,0.41,0.41,0.53,0.75,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.81,0.62,0.45,0.42,0.48,0.55,0.63,0.7,0.75,0.81,0.83,0.83,0.81,0.71,0.42,0.36,0.4,0.34,0.27,0.42,0.57,0.56,0.53,0.36,0.29,0.31,0.27,0.27,0.56,0.76,0.8,0.79,0.78,0.74,0.68,0.62,0.55,0.48,0.43,0.4,0.44,0.61,0.79,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.86,0.71,0.5,0.41,0.45,0.52,0.59,0.66,0.71,0.78,0.81,0.82,0.8,0.75,0.57,0.36,0.27,0.24,0.21,0.22,0.39,0.42,0.31,0.15,0.18,0.21,0.29,0.47,0.67,0.75,0.77,0.76,0.75,0.71,0.65,0.58,0.51,0.45,0.41,0.4,0.5,0.67,0.85,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.91,0.78,0.58,0.42,0.43,0.49,0.56,0.62,0.66,0.72,0.77,0.79,0.78,0.75,0.68,0.57,0.47,0.41,0.4,0.42,0.4,0.4,0.41,0.41,0.4,0.42,0.49,0.62,0.7,0.73,0.75,0.73,0.71,0.67,0.61,0.54,0.48,0.43,0.41,0.43,0.56,0.71,0.91,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.82,0.66,0.45,0.42,0.47,0.53,0.57,0.63,0.67,0.72,0.75,0.75,0.75,0.69,0.64,0.61,0.58,0.6,0.64,0.63,0.62,0.64,0.64,0.61,0.59,0.61,0.66,0.69,0.72,0.72,0.7,0.67,0.63,0.57,0.5,0.45,0.41,0.4,0.47,0.62,0.77,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.87,0.71,0.52,0.42,0.46,0.49,0.54,0.59,0.64,0.68,0.71,0.71,0.7,0.69,0.67,0.66,0.67,0.69,0.71,0.68,0.67,0.67,0.73,0.69,0.66,0.65,0.67,0.69,0.69,0.68,0.66,0.63,0.59,0.53,0.47,0.41,0.39,0.41,0.53,0.67,0.85,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.76,0.59,0.43,0.44,0.48,0.51,0.56,0.62,0.64,0.66,0.66,0.66,0.67,0.68,0.7,0.71,0.73,0.75,0.67,0.65,0.67,0.76,0.75,0.71,0.68,0.68,0.67,0.66,0.64,0.62,0.59,0.56,0.51,0.44,0.4,0.39,0.45,0.59,0.73,0.92,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.82,0.65,0.47,0.42,0.45,0.49,0.54,0.59,0.61,0.61,0.61,0.62,0.66,0.69,0.73,0.74,0.76,0.78,0.79,0.76,0.79,0.8,0.76,0.74,0.71,0.69,0.67,0.63,0.6,0.57,0.55,0.54,0.49,0.43,0.4,0.41,0.51,0.65,0.8,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.89,0.72,0.53,0.42,0.44,0.48,0.52,0.56,0.56,0.56,0.54,0.58,0.63,0.65,0.66,0.64,0.62,0.65,0.68,0.73,0.67,0.6,0.6,0.6,0.62,0.62,0.62,0.58,0.53,0.52,0.51,0.51,0.46,0.42,0.4,0.45,0.59,0.73,0.89,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.78,0.6,0.43,0.43,0.46,0.5,0.53,0.53,0.5,0.47,0.49,0.49,0.48,0.48,0.49,0.48,0.47,0.45,0.48,0.45,0.47,0.47,0.44,0.4,0.39,0.4,0.43,0.43,0.45,0.47,0.47,0.44,0.41,0.41,0.51,0.66,0.81,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.87,0.67,0.48,0.42,0.45,0.49,0.53,0.49,0.41,0.31,0.28,0.26,0.29,0.36,0.4,0.4,0.42,0.38,0.36,0.38,0.41,0.38,0.33,0.31,0.26,0.22,0.22,0.25,0.36,0.43,0.44,0.42,0.4,0.43,0.57,0.74,0.9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.95,0.78,0.55,0.42,0.44,0.48,0.52,0.5,0.39,0.19,0.1,0.15,0.2,0.22,0.23,0.29,0.34,0.31,0.26,0.29,0.25,0.22,0.22,0.27,0.24,0.18,0.14,0.29,0.43,0.45,0.42,0.4,0.4,0.47,0.64,0.81,0.96,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.85,0.64,0.44,0.42,0.46,0.51,0.53,0.52,0.46,0.32,0.27,0.4,0.51,0.52,0.52,0.49,0.46,0.44,0.48,0.52,0.55,0.59,0.55,0.45,0.35,0.35,0.46,0.47,0.44,0.39,0.38,0.4,0.52,0.73,0.9,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.79,0.73,0.48,0.4,0.43,0.48,0.53,0.56,0.52,0.43,0.38,0.48,0.7,0.76,0.81,0.82,0.82,0.82,0.82,0.82,0.81,0.76,0.61,0.48,0.42,0.41,0.47,0.47,0.41,0.36,0.35,0.41,0.58,0.81,0.97,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.91,0.53,0.74,0.55,0.38,0.39,0.45,0.49,0.54,0.53,0.45,0.42,0.49,0.62,0.76,0.85,0.91,0.9,0.88,0.89,0.89,0.84,0.67,0.49,0.39,0.38,0.41,0.46,0.43,0.38,0.35,0.35,0.42,0.66,0.87,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.4,0.51,0.63,0.4,0.35,0.41,0.45,0.49,0.51,0.46,0.39,0.42,0.5,0.65,0.78,0.82,0.81,0.76,0.76,0.77,0.74,0.56,0.37,0.31,0.36,0.41,0.43,0.39,0.35,0.34,0.35,0.5,0.74,0.8,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.93,0.4,0.24,0.56,0.45,0.35,0.36,0.42,0.45,0.47,0.47,0.41,0.35,0.38,0.47,0.64,0.74,0.74,0.69,0.68,0.68,0.58,0.39,0.3,0.32,0.37,0.41,0.4,0.37,0.35,0.33,0.4,0.65,0.63,0.69,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.92,0.4,0.18,0.31,0.48,0.36,0.34,0.38,0.42,0.45,0.46,0.44,0.39,0.33,0.33,0.4,0.49,0.53,0.51,0.48,0.43,0.35,0.29,0.31,0.36,0.39,0.39,0.38,0.35,0.33,0.33,0.48,0.67,0.36,0.71,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.87,0.4,0.18,0.18,0.38,0.4,0.33,0.34,0.38,0.43,0.45,0.46,0.44,0.39,0.31,0.27,0.27,0.27,0.27,0.26,0.25,0.25,0.29,0.36,0.4,0.4,0.39,0.36,0.33,0.31,0.36,0.59,0.43,0.25,0.75,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.86,0.8,0.38,0.19,0.17,0.21,0.39,0.34,0.31,0.34,0.4,0.44,0.47,0.49,0.48,0.44,0.37,0.33,0.3,0.29,0.3,0.33,0.36,0.4,0.44,0.43,0.42,0.39,0.35,0.31,0.31,0.44,0.51,0.2,0.27,0.77,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.91,0.76,0.73,0.73,0.37,0.19,0.18,0.17,0.26,0.37,0.3,0.31,0.35,0.42,0.47,0.52,0.55,0.55,0.51,0.48,0.46,0.46,0.46,0.48,0.5,0.51,0.5,0.47,0.43,0.38,0.35,0.31,0.34,0.49,0.25,0.16,0.29,0.77,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.97,0.84,0.65,0.58,0.62,0.63,0.34,0.2,0.19,0.18,0.17,0.28,0.33,0.29,0.32,0.38,0.47,0.53,0.58,0.62,0.6,0.59,0.59,0.59,0.59,0.59,0.59,0.58,0.55,0.49,0.43,0.37,0.33,0.31,0.39,0.31,0.15,0.17,0.3,0.71,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.93,0.75,0.57,0.48,0.47,0.51,0.5,0.29,0.21,0.2,0.19,0.18,0.17,0.28,0.31,0.3,0.35,0.44,0.51,0.57,0.62,0.63,0.64,0.64,0.64,0.63,0.63,0.62,0.6,0.56,0.48,0.39,0.35,0.31,0.33,0.31,0.16,0.15,0.18,0.3,0.61,0.85,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.96,0.85,0.68,0.52,0.43,0.41,0.4,0.4,0.37,0.25,0.22,0.21,0.21,0.2,0.18,0.17,0.27,0.29,0.31,0.37,0.44,0.52,0.6,0.63,0.64,0.64,0.63,0.62,0.61,0.59,0.56,0.51,0.42,0.35,0.31,0.32,0.32,0.17,0.15,0.16,0.19,0.29,0.52,0.65,0.84,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.9,0.76,0.62,0.51,0.43,0.39,0.37,0.35,0.33,0.29,0.23,0.22,0.23,0.23,0.22,0.2,0.18,0.18,0.25,0.29,0.31,0.37,0.43,0.51,0.57,0.58,0.58,0.57,0.56,0.54,0.5,0.47,0.42,0.35,0.31,0.31,0.29,0.18,0.15,0.16,0.16,0.19,0.27,0.43,0.53,0.59,0.81,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.93,0.81,0.68,0.58,0.5,0.44,0.39,0.36,0.34,0.31,0.29,0.25,0.23,0.23,0.24,0.25,0.24,0.23,0.21,0.19,0.18,0.24,0.27,0.3,0.34,0.4,0.45,0.45,0.46,0.45,0.44,0.42,0.4,0.37,0.33,0.3,0.29,0.24,0.16,0.16,0.16,0.16,0.17,0.19,0.24,0.35,0.42,0.44,0.53,0.75,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.94,0.84,0.72,0.62,0.54,0.49,0.45,0.42,0.38,0.35,0.32,0.29,0.27,0.25,0.24,0.24,0.25,0.26,0.26,0.25,0.24,0.22,0.2,0.2,0.22,0.25,0.28,0.31,0.33,0.33,0.34,0.33,0.32,0.31,0.3,0.29,0.26,0.23,0.18,0.15,0.16,0.17,0.17,0.18,0.18,0.19,0.22,0.29,0.33,0.36,0.4,0.48,0.66,0.89,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.98,0.93,0.85,0.75,0.65,0.57,0.53,0.49,0.46,0.44,0.42,0.39,0.36,0.33,0.3,0.27,0.25,0.25,0.25,0.26,0.27,0.29,0.28,0.26,0.24,0.22,0.21,0.2,0.21,0.23,0.24,0.24,0.25,0.25,0.25,0.24,0.23,0.22,0.2,0.18,0.16,0.16,0.16,0.18,0.18,0.18,0.18,0.18,0.2,0.21,0.25,0.28,0.31,0.34,0.37,0.45,0.6,0.84,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,1,1,0.99,0.97,0.93,0.85,0.75,0.67,0.6,0.55,0.52,0.49,0.47,0.45,0.44,0.43,0.4,0.37,0.34,0.31,0.29,0.27,0.27,0.27,0.28,0.29,0.3,0.3,0.29,0.26,0.24,0.23,0.21,0.21,0.23,0.25,0.25,0.26,0.27,0.26,0.24,0.22,0.21,0.2,0.18,0.17,0.18,0.18,0.19,0.2,0.19,0.18,0.18,0.19,0.21,0.24,0.26,0.28,0.31,0.33,0.37,0.44,0.57,0.78,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,1,1,0.99,0.96,0.9,0.83,0.75,0.67,0.61,0.56,0.53,0.52,0.51,0.5,0.49,0.47,0.46,0.45,0.42,0.39,0.35,0.33,0.31,0.3,0.29,0.29,0.3,0.31,0.32,0.32,0.32,0.3,0.28,0.27,0.25,0.23,0.23,0.24,0.25,0.27,0.28,0.27,0.25,0.23,0.21,0.2,0.18,0.18,0.19,0.2,0.21,0.21,0.2,0.19,0.19,0.2,0.21,0.23,0.25,0.27,0.29,0.32,0.34,0.38,0.43,0.53,0.71,0.91,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,1,1,1,0.98,0.95,0.89,0.81,0.73,0.67,0.61,0.57,0.55,0.53,0.53,0.53,0.52,0.52,0.51,0.49,0.48,0.47,0.44,0.41,0.38,0.35,0.33,0.32,0.32,0.31,0.32,0.33,0.33,0.34,0.34,0.34,0.32,0.3,0.28,0.26,0.25,0.25,0.26,0.26,0.27,0.26,0.25,0.22,0.21,0.2,0.2,0.2,0.22,0.22,0.23,0.22,0.2,0.2,0.2,0.21,0.22,0.24,0.25,0.27,0.29,0.31,0.33,0.36,0.38,0.43,0.5,0.65,0.85,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[1,1,1,1,1,1,0.99,0.97,0.93,0.87,0.8,0.74,0.68,0.63,0.58,0.56,0.55,0.54,0.54,0.54,0.55,0.54,0.54,0.53,0.52,0.51,0.49,0.47,0.44,0.4,0.37,0.35,0.34,0.33,0.33,0.34,0.35,0.35,0.35,0.35,0.36,0.35,0.33,0.32,0.3,0.29,0.28,0.28,0.28,0.28,0.27,0.25,0.24,0.22,0.22,0.23,0.23,0.24,0.25,0.24,0.23,0.22,0.21,0.22,0.23,0.24,0.24,0.25,0.27,0.29,0.32,0.33,0.36,0.38,0.39,0.42,0.48,0.58,0.77,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0.98,0.98,0.97,0.96,0.94,0.92,0.89,0.85,0.8,0.76,0.72,0.67,0.62,0.59,0.56,0.55,0.55,0.56,0.57,0.57,0.57,0.57,0.56,0.55,0.54,0.54,0.52,0.49,0.46,0.43,0.4,0.38,0.36,0.36,0.36,0.36,0.36,0.37,0.37,0.37,0.37,0.37,0.36,0.35,0.33,0.32,0.32,0.31,0.31,0.31,0.29,0.28,0.27,0.26,0.26,0.26,0.26,0.27,0.27,0.25,0.24,0.22,0.23,0.24,0.25,0.25,0.25,0.26,0.28,0.3,0.33,0.35,0.37,0.38,0.39,0.4,0.42,0.45,0.53,0.7,0.9,0.99,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0.84,0.82,0.82,0.8,0.79,0.78,0.77,0.75,0.73,0.71,0.68,0.64,0.6,0.59,0.58,0.57,0.58,0.58,0.6,0.6,0.6,0.6,0.59,0.58,0.56,0.55,0.55,0.52,0.49,0.46,0.43,0.4,0.39,0.38,0.38,0.38,0.38,0.39,0.38,0.39,0.4,0.39,0.39,0.38,0.38,0.37,0.37,0.36,0.35,0.34,0.33,0.32,0.3,0.29,0.29,0.29,0.29,0.29,0.28,0.26,0.24,0.23,0.25,0.27,0.27,0.27,0.26,0.27,0.29,0.31,0.34,0.36,0.38,0.4,0.4,0.4,0.41,0.41,0.42,0.49,0.62,0.81,0.95,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0.73,0.71,0.69,0.68,0.67,0.67,0.68,0.68,0.69,0.68,0.66,0.63,0.61,0.6,0.59,0.58,0.59,0.6,0.62,0.61,0.61,0.62,0.6,0.59,0.58,0.57,0.57,0.55,0.51,0.49,0.45,0.44,0.42,0.41,0.41,0.4,0.39,0.4,0.4,0.4,0.42,0.42,0.41,0.41,0.4,0.41,0.41,0.4,0.4,0.38,0.36,0.34,0.33,0.32,0.32,0.31,0.31,0.31,0.29,0.26,0.25,0.25,0.28,0.3,0.29,0.28,0.27,0.28,0.3,0.33,0.35,0.37,0.39,0.41,0.42,0.42,0.41,0.4,0.41,0.42,0.46,0.55,0.71,0.89,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0.7,0.69,0.67,0.64,0.62,0.6,0.6,0.6,0.62,0.62,0.63,0.62,0.62,0.61,0.61,0.61,0.61,0.61,0.62,0.62,0.62,0.62,0.61,0.6,0.59,0.59,0.58,0.57,0.55,0.52,0.49,0.47,0.45,0.45,0.45,0.43,0.42,0.42,0.41,0.41,0.42,0.43,0.43,0.43,0.43,0.43,0.43,0.42,0.42,0.41,0.4,0.38,0.36,0.35,0.35,0.34,0.34,0.33,0.29,0.27,0.26,0.28,0.31,0.32,0.31,0.29,0.28,0.3,0.32,0.34,0.36,0.38,0.4,0.43,0.44,0.44,0.43,0.42,0.42,0.42,0.42,0.45,0.51,0.62,0.78,0.92,0.98,1,1,1,1,1,1,1,1,1,1,1,1,1],
[0.68,0.67,0.65,0.63,0.6,0.57,0.55,0.54,0.54,0.55,0.56,0.59,0.61,0.62,0.62,0.62,0.62,0.62,0.62,0.63,0.62,0.61,0.6,0.6,0.6,0.6,0.6,0.59,0.57,0.54,0.51,0.49,0.49,0.49,0.49,0.47,0.44,0.43,0.42,0.42,0.42,0.44,0.44,0.44,0.44,0.44,0.45,0.44,0.43,0.42,0.42,0.41,0.4,0.39,0.39,0.38,0.37,0.34,0.3,0.27,0.28,0.31,0.33,0.33,0.31,0.29,0.3,0.32,0.33,0.36,0.38,0.4,0.42,0.44,0.45,0.45,0.45,0.45,0.45,0.44,0.43,0.42,0.44,0.47,0.53,0.64,0.78,0.93,0.99,1,1,1,1,1,1,1,1,1,1,1],
[0.66,0.66,0.65,0.63,0.59,0.56,0.54,0.52,0.49,0.49,0.51,0.54,0.57,0.6,0.62,0.63,0.63,0.63,0.63,0.63,0.62,0.62,0.61,0.6,0.6,0.6,0.6,0.6,0.58,0.56,0.53,0.52,0.52,0.53,0.53,0.52,0.48,0.45,0.42,0.42,0.43,0.44,0.45,0.46,0.46,0.46,0.46,0.45,0.44,0.44,0.43,0.42,0.42,0.42,0.42,0.41,0.38,0.34,0.3,0.29,0.29,0.32,0.35,0.35,0.33,0.31,0.32,0.33,0.35,0.38,0.4,0.42,0.44,0.45,0.46,0.46,0.47,0.47,0.47,0.45,0.44,0.43,0.43,0.44,0.44,0.47,0.54,0.67,0.86,0.98,1,1,1,1,1,1,1,1,1,1]];
}